Spaces:
Sleeping
Sleeping
File size: 14,362 Bytes
65038b8 |
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 367 368 369 370 371 372 373 374 375 376 377 378 |
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
MCP Client classes for tool-calling environments.
This module provides async client classes for interacting with MCP-enabled environments:
- MCPClientBase: Base class with shared tool discovery
- MCPToolClient: Client for tool-calling style (one tool per step)
These clients abstract away the MCP protocol details, providing a clean interface
for listing and calling tools on remote environments. All clients are async by default.
Architecture Overview::
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β HTTPEnvServer β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β Simulation Mode (default): β
β /ws β OpenEnv protocol (reset/step/state) β
β /mcp β MCP JSON-RPC (tools/list, tools/call) β
β /reset, /step, /state β HTTP endpoints β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β Production Mode (use_production_mode=True): β
β /mcp β MCP JSON-RPC (tools/list, tools/call) β
β Bypasses step() for direct tool access β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Client Usage:
MCPToolClient (default) β /ws (step-based, with rewards)
MCPToolClient (production) β /mcp (direct tool access, no rewards)
Example (async):
>>> from openenv.core.mcp_client import MCPToolClient
>>>
>>> async with MCPToolClient(base_url="http://localhost:8000") as env:
... # Discover available tools
... tools = await env.list_tools()
... print([t.name for t in tools])
...
... # Call a tool
... result = await env.call_tool("echo_message", message="Hello!")
... print(result)
Example (sync wrapper):
>>> env = MCPToolClient(base_url="http://localhost:8000").sync()
>>> with env:
... tools = env.list_tools()
... result = env.call_tool("echo_message", message="Hello!")
"""
from typing import Any, Dict, List, Optional
from .client_types import StepResult
from .env_client import EnvClient
from .env_server.mcp_types import (
CallToolAction,
CallToolObservation,
ListToolsAction,
ListToolsObservation,
Tool,
ToolError,
)
from .env_server.types import Observation, State
class MCPClientBase(EnvClient[Any, Observation, State]):
"""
Base class for MCP clients with tool discovery.
This class provides the common `list_tools()` method for discovering
available tools from an MCP-enabled environment. Subclasses implement
specific interaction patterns (tool-calling or CodeAct).
Attributes:
_tools_cache: Cached list of tools (populated on first `list_tools()` call)
"""
def __init__(
self,
base_url: str,
connect_timeout_s: float = 10.0,
message_timeout_s: float = 60.0,
provider: Optional[Any] = None,
mode: Optional[str] = None,
):
"""
Initialize MCP client.
Args:
base_url: Base URL of the environment server (http:// or ws://).
connect_timeout_s: Timeout for establishing WebSocket connection.
message_timeout_s: Timeout for receiving responses to messages.
provider: Optional container/runtime provider for lifecycle management.
mode: Communication mode. Must be 'production' for MCP clients. Defaults to 'production'.
"""
# MCPClientBase defaults to production mode, but allow override for validation
if mode is None:
mode = "production"
# Validate that mode is production
mode_lower = mode.lower()
if mode_lower != "production":
raise ValueError(
f"MCPToolClient only supports 'production' mode, got '{mode}'. "
f"Use GenericEnvClient for simulation mode."
)
super().__init__(
base_url=base_url,
connect_timeout_s=connect_timeout_s,
message_timeout_s=message_timeout_s,
provider=provider,
mode=mode,
)
self._tools_cache: Optional[List[Tool]] = None
self.use_production_mode = False
async def list_tools(self, use_cache: bool = True) -> List[Tool]:
"""
Discover available tools from the environment.
Args:
use_cache: If True, return cached tools if available.
Set to False to force a fresh request.
Returns:
List of Tool objects with name, description, and input_schema.
Example:
>>> tools = await env.list_tools()
>>> for tool in tools:
... print(f"{tool.name}: {tool.description}")
"""
if use_cache and self._tools_cache is not None:
return self._tools_cache
# Use production mode HTTP endpoint if enabled
if self.use_production_mode:
import requests
# Convert ws:// URL to http:// URL
url = self._ws_url.replace("ws://", "http://").replace("wss://", "https://")
# Remove /ws suffix if present and add /mcp
url = url.rstrip("/ws").rstrip("/") + "/mcp"
try:
response = requests.post(
url,
json={
"jsonrpc": "2.0",
"method": "tools/list",
"params": {},
"id": 1,
},
)
data = response.json()
if "result" in data and "tools" in data["result"]:
tools = [
Tool(
name=t.get("name", ""),
description=t.get("description", ""),
input_schema=t.get(
"input_schema", t.get("inputSchema", {})
),
)
for t in data["result"]["tools"]
]
self._tools_cache = tools
return tools
except Exception:
# If HTTP request fails, return empty list
pass
return []
result = await self.step(ListToolsAction())
self._tools_cache = result.observation.tools
return self._tools_cache
def _step_payload(self, action: Any) -> Dict[str, Any]:
"""Convert an Action object to the JSON data expected by the env server."""
if isinstance(action, ListToolsAction):
return {"type": "list_tools"}
elif isinstance(action, CallToolAction):
return {
"type": "call_tool",
"tool_name": action.tool_name,
"arguments": action.arguments,
}
else:
# For unknown actions, try to serialize as dict
if hasattr(action, "model_dump"):
return action.model_dump()
return {"action": str(action)}
def _parse_result(self, payload: Dict[str, Any]) -> StepResult[Observation]:
"""Convert a JSON response from the env server to StepResult[Observation]."""
obs_data = payload.get("observation", {})
# Check if this is a ListToolsObservation
if "tools" in obs_data:
tools = [
Tool(
name=t.get("name", ""),
description=t.get("description", ""),
input_schema=t.get("input_schema", t.get("inputSchema", {})),
)
for t in obs_data.get("tools", [])
]
observation = ListToolsObservation(
tools=tools,
done=payload.get("done", False),
reward=payload.get("reward"),
metadata=obs_data.get("metadata", {}),
)
# Check if this is a CallToolObservation
elif "tool_name" in obs_data:
error = None
if obs_data.get("error"):
error = ToolError(**obs_data["error"])
observation = CallToolObservation(
tool_name=obs_data.get("tool_name", ""),
result=obs_data.get("result"),
error=error,
done=payload.get("done", False),
reward=payload.get("reward"),
metadata=obs_data.get("metadata", {}),
)
else:
# Generic observation
observation = Observation(
done=payload.get("done", False),
reward=payload.get("reward"),
metadata=obs_data.get("metadata", {}),
)
return StepResult(
observation=observation,
reward=payload.get("reward"),
done=payload.get("done", False),
)
def _parse_state(self, payload: Dict[str, Any]) -> State:
"""Convert a JSON response from the state endpoint to a State object."""
return State(
episode_id=payload.get("episode_id"),
step_count=payload.get("step_count", 0),
)
class MCPToolClient(MCPClientBase):
"""
Async client for tool-calling style MCP interactions.
Each step invokes a single tool. Use this for traditional function-calling
agent patterns where the agent decides which tool to call next.
This client provides convenience methods for tool discovery and invocation:
- `list_tools()`: Get all available tools with their schemas
- `call_tool(name, **kwargs)`: Invoke a tool by name with arguments
Example (async):
>>> async with MCPToolClient(base_url="http://localhost:8000") as env:
... # Reset the environment
... await env.reset()
...
... # Discover available tools
... tools = await env.list_tools()
... print([t.name for t in tools]) # ['echo_message', 'echo_with_length']
...
... # Call a tool directly
... result = await env.call_tool("echo_message", message="Hello!")
... print(result) # "Hello!"
...
... # Or use the full action interface
... from openenv.core.env_server.mcp_types import CallToolAction
... step_result = await env.step(CallToolAction(
... tool_name="echo_with_length",
... arguments={"message": "Test"}
... ))
... print(step_result.observation.result)
Example (sync wrapper):
>>> env = MCPToolClient(base_url="http://localhost:8000").sync()
>>> with env:
... tools = env.list_tools()
... result = env.call_tool("echo_message", message="Hello!")
"""
async def call_tool(self, name: str, **kwargs: Any) -> Any:
"""
Call a tool by name.
This is a convenience method that creates a CallToolAction, executes it,
and returns the result directly. For more control, use `step()` with
a CallToolAction directly.
Args:
name: Name of the tool to invoke (must match a tool from `list_tools()`).
**kwargs: Arguments to pass to the tool. Must match the tool's input_schema.
Returns:
The tool's result. The type depends on the tool being called.
Raises:
RuntimeError: If the server returns an error response.
Example:
>>> result = await env.call_tool("add", a=5, b=3)
>>> print(result) # 8
>>>
>>> result = await env.call_tool("greet", name="Claude")
>>> print(result) # "Hello, Claude!"
"""
action = CallToolAction(tool_name=name, arguments=kwargs)
result = await self.step(action)
obs = result.observation
# Check for transport/framework errors
if isinstance(obs, CallToolObservation) and obs.error is not None:
raise RuntimeError(
f"Tool '{name}' failed: {obs.error.message} "
f"(type: {obs.error.error_type.value})"
)
# Return the result
if isinstance(obs, CallToolObservation):
result = obs.result
# Handle FastMCP CallToolResult objects
# - As object: has .data attribute
# - As dict (from JSON): has "data" key
if hasattr(result, "data"):
return result.data
if isinstance(result, dict) and "data" in result:
return result["data"]
return result
# Fallback for unexpected observation types
return obs
async def get_tool(self, name: str) -> Optional[Tool]:
"""
Get a specific tool by name.
Args:
name: Name of the tool to find.
Returns:
The Tool object if found, None otherwise.
Example:
>>> tool = await env.get_tool("echo_message")
>>> if tool:
... print(tool.description)
... print(tool.input_schema)
"""
tools = await self.list_tools()
for tool in tools:
if tool.name == name:
return tool
return None
async def has_tool(self, name: str) -> bool:
"""
Check if a tool exists.
Args:
name: Name of the tool to check.
Returns:
True if the tool exists, False otherwise.
"""
return await self.get_tool(name) is not None
|