Spaces:
Configuration error
Configuration error
File size: 11,089 Bytes
e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 80a80da e1da269 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | """
Student MCP Server for Text Adventure Games
This is your MCP server submission. Implement the tools that your agent
will use to play text adventure games.
Required tool:
play_action(action: str) -> str
Execute a game command and return the result.
Recommended tools:
memory() -> str
Return current game state, score, and recent history.
inventory() -> str
Return the player's current inventory.
get_map() -> str
Return a map of explored locations.
Test your server with:
fastmcp dev submission_template/mcp_server.py
Then open the MCP Inspector in your browser to test the tools interactively.
"""
import sys
import os
# Add parent directory to path to import games module
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from fastmcp import FastMCP
from games.zork_env import TextAdventureEnv
# =============================================================================
# Create the MCP Server
# =============================================================================
mcp = FastMCP("Student Text Adventure Server")
# =============================================================================
# Game State Management
# =============================================================================
class GameManager:
"""
Manages the text adventure game state.
TODO: Extend this class to track:
- Action history (for memory tool)
- Explored locations (for mapping)
- Current score and moves
"""
def __init__(self):
self.env: TextAdventureEnv = None
self.state = None
self.game_name: str = ""
# TODO: Add more state tracking
self.history: list[tuple[str, str]] = []
self.explored_locations: dict[str, set[str]] = {}
self.current_location: str = self._extract_location(self.state.observation) if self.state else "Unknown"
self.current_objective = "Explore the game world and maximize score."
self.interactives: dict = {} # Interactive objects and their locations
def _extract_location(self, observation: str) -> str:
"""Extract location name from observation (usually first line)."""
lines = observation.strip().split('\n')
return lines[0] if lines else "Unknown"
def initialize(self, game: str = "zork1"):
"""Initialize or reset the game."""
self.game_name = game
self.env = TextAdventureEnv(game)
self.state = self.env.reset()
# TODO: Reset your state tracking here
self.history = []
self.explored_locations = {}
self.current_location = self._extract_location(self.state.observation)
self.current_objective = "Explore the game world and maximize score."
self.interactives: dict = {}
return self.state.observation
def step(self, action: str) -> str:
"""Execute an action and return the result."""
if self.env is None:
self.initialize()
self.state = self.env.step(action)
result = self.state.observation
# TODO: Update your state tracking here
self.history.append((action, result))
if len(self.history) > 20:
self.history = self.history[-20:]
new_location = self._extract_location(result)
if action in ["north", "south", "east", "west", "up", "down",
"enter", "exit", "n", "s", "e", "w", "u", "d"]:
if self.current_location not in self.explored_locations:
self.explored_locations[self.current_location] = set()
if new_location != self.current_location:
self.explored_locations[self.current_location].add(f"{action} -> {new_location}")
self.current_location = new_location
return self.state.observation
def get_memory(self) -> str:
"""Get a summary of current game state."""
recent = self.history if self.history else []
recent_str = "\n".join([f" > {a} -> {r}..." for a, r in recent]) if recent else " (none yet)"
return f"""Current State:
- Location: {self.current_location}
- Score: {self.state.score} points
- Moves: {self.state.moves}
- Game: {self.game_name}
All actions and observations:
{recent_str}
Current Observation:
{self.state.observation}
Current Objective:
{self.current_objective}"""
def get_map(self) -> str:
"""Get a map of explored locations."""
if not self.explored_locations:
return "Map: No locations explored yet. Try moving around!"
lines = ["Explored Locations and Exits:"]
for loc, exits in sorted(self.explored_locations.items()):
lines.append(f"\n* {loc}")
for exit_info in sorted(exits):
lines.append(f" -> {exit_info}")
lines.append(f"\n[Current] {self.current_location}")
return "\n".join(lines)
def get_inventory(self) -> str:
"""Get current inventory."""
items = self.state.inventory if hasattr(self.state, 'inventory') and self.state.inventory else []
if not items:
return "Inventory: You are empty-handed."
item_names = []
for item in items:
item_str = str(item)
item_lower = item_str.lower()
if "parent" in item_lower:
idx = item_lower.index("parent")
name = item_str[:idx].strip()
if ":" in name:
name = name.split(":", 1)[1].strip()
item_names.append(name)
elif ":" in item_str:
name = item_str.split(":")[1].strip()
item_names.append(name)
else:
item_names.append(item_str)
return f"Inventory: {', '.join(item_names)}"
def get_interactives(self) -> str:
"""Get interactive objects and their locations."""
if not self.interactives:
return "Interactives: No interactive objects identified yet."
lines = ["Interactive objects and Locations:"]
for obj, loc in sorted(self.interactives.items()):
lines.append(f"\n* {obj} (at {loc})")
return "\n".join(lines)
def add_interactive(self, obj: str, location: str = None):
"""Add an interactive object, automatically adds its location."""
if location is None:
location = self.current_location
self.interactives[obj] = location
def get_current_objective(self) -> str:
"""Get the current objective."""
return self.current_objective
def set_current_objective(self, objective: str):
"""Set a new current objective."""
self.current_objective = objective
def get_score(self) -> int:
"""Get current score."""
return self.state.score if self.state else 0
def get_moves(self) -> int:
"""Get number of moves taken."""
return self.state.moves if self.state else 0
# Global game manager
_game = GameManager()
def get_game() -> GameManager:
"""Get or initialize the game manager."""
global _game
if _game.env is None:
# Get game from environment variable (set by evaluator)
game = os.environ.get("GAME", "zork1")
_game.initialize(game)
return _game
# =============================================================================
# MCP Tools - IMPLEMENT THESE
# =============================================================================
@mcp.tool()
def play_action(action: str) -> str:
"""
Execute a game command and return the result.
This is the main tool for interacting with the game.
Args:
action: The command to execute (e.g., "north", "take lamp", "open mailbox")
Returns:
The game's response to the action
Valid commands include:
- Movement: north, south, east, west, up, down, enter, exit
- Objects: take <item>, drop <item>, open <thing>, examine <thing>
- Other: look, inventory, read <thing>, turn on lamp
"""
game = get_game()
# TODO: You might want to add action validation here
# TODO: You might want to include score changes in the response
result = game.step(action)
# Optional: Append score info
score_info = f"\n\n[Score: {game.state.score} | Moves: {game.state.moves}]"
if game.state.reward > 0:
score_info = f"\n\n+{game.state.reward} points! (Total: {game.state.score})"
done_info = ""
if game.state.done:
done_info = "\n\nGAME OVER"
return result + score_info + done_info
# TODO: Implement additional tools to help your agent
@mcp.tool()
def memory() -> str:
"""
Get a summary of the current game state.
Returns location, score, moves, recent actions, and current observation.
"""
return get_game().get_memory()
@mcp.tool()
def get_map() -> str:
"""
Get a map showing explored locations and connections.
Useful for navigation and avoiding getting lost.
"""
return get_game().get_map()
@mcp.tool()
def inventory() -> str:
"""
Check what items you are currently carrying.
"""
return get_game().get_inventory()
@mcp.tool()
def get_interactives() -> str:
"""
Get interactive objects and their locations.
"""
return get_game().get_interactives()
@mcp.tool()
def add_interactive(object: str, location: str = None) -> str:
"""
Add an interactive object and its location.
"""
get_game().add_interactive(object, location)
return f"Added interactive: {object} at location: {location}"
@mcp.tool()
def get_current_objective() -> str:
"""
Get the current objective.
"""
return get_game().get_current_objective()
@mcp.tool()
def set_current_objective(objective: str) -> str:
"""
Set a new current objective.
"""
get_game().set_current_objective(objective)
return f"Objective updated to: {objective}"
@mcp.tool()
def get_valid_actions() -> str:
"""
Get a list of likely valid actions from the current location.
Returns:
List of actions that might work here
"""
# This is a hint: Jericho provides get_valid_actions()
game = get_game()
if game.env and game.env.env:
valid = game.env.env.get_valid_actions()
return "Valid actions: " + ", ".join(valid[:20])
return "Could not determine valid actions"
# =============================================================================
# Run the server
# =============================================================================
if __name__ == "__main__":
# This runs the server with stdio transport (for MCP clients)
mcp.run()
|