mcp_server
Class info¶
Classes¶
| Name | Children | Inherits |
|---|---|---|
| BridgeConfig llmling_agent.mcp_server.tool_bridge Configuration for the ToolManager MCP bridge. |
||
| MCPClient llmling_agent.mcp_server.client FastMCP-based client for communicating with MCP servers. |
||
| ToolBridgeRegistry llmling_agent.mcp_server.tool_bridge Registry for managing multiple tool bridges. |
||
| ToolManagerBridge llmling_agent.mcp_server.tool_bridge Exposes a ToolManager's tools as an MCP server for ACP agents. |
🛈 DocStrings¶
MCP server integration for LLMling agent.
BridgeConfig
dataclass
¶
Configuration for the ToolManager MCP bridge.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | |
port
class-attribute
instance-attribute
¶
port: int = 0
Port to bind to (0 = auto-select available port).
server_name
class-attribute
instance-attribute
¶
server_name: str = 'llmling-toolmanager'
Name for the MCP server.
transport
class-attribute
instance-attribute
¶
transport: str = 'sse'
Transport protocol: 'sse' or 'streamable-http'.
MCPClient
¶
FastMCP-based client for communicating with MCP servers.
Source code in src/llmling_agent/mcp_server/client.py
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 379 380 381 382 383 | |
__aenter__
async
¶
__aenter__() -> Self
Enter context manager.
Source code in src/llmling_agent/mcp_server/client.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
__aexit__
async
¶
__aexit__(*args: object) -> None
Exit context manager and cleanup.
Source code in src/llmling_agent/mcp_server/client.py
119 120 121 122 123 124 | |
call_tool
async
¶
call_tool(
name: str,
run_context: RunContext,
arguments: dict[str, Any] | None = None,
agent_ctx: AgentContext[Any] | None = None,
) -> ToolReturn | str | Any
Call an MCP tool with full PydanticAI return type support.
Source code in src/llmling_agent/mcp_server/client.py
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 | |
convert_tool
¶
convert_tool(tool: Tool) -> Tool
Create a properly typed callable from MCP tool schema.
Source code in src/llmling_agent/mcp_server/client.py
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 | |
get_prompt
async
¶
get_prompt(name: str, arguments: dict[str, str] | None = None) -> GetPromptResult
Get a specific prompt's content.
Source code in src/llmling_agent/mcp_server/client.py
249 250 251 252 253 254 255 256 257 258 259 260 261 | |
get_resource_fs
¶
get_resource_fs() -> MCPFileSystem
Get a filesystem for accessing MCP resources.
Source code in src/llmling_agent/mcp_server/client.py
126 127 128 129 130 | |
get_tools_fs
¶
get_tools_fs() -> MCPToolsFileSystem
Get a filesystem for accessing MCP tools as code.
Source code in src/llmling_agent/mcp_server/client.py
132 133 134 135 136 | |
list_prompts
async
¶
list_prompts() -> list[Prompt]
Get available prompts from the server.
Source code in src/llmling_agent/mcp_server/client.py
225 226 227 228 229 230 231 232 233 234 235 | |
list_resources
async
¶
list_resources() -> list[Resource]
Get available resources from the server.
Source code in src/llmling_agent/mcp_server/client.py
237 238 239 240 241 242 243 244 245 246 247 | |
list_tools
async
¶
list_tools() -> list[Tool]
Get available tools directly from the server.
Source code in src/llmling_agent/mcp_server/client.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 | |
ToolBridgeRegistry
¶
Registry for managing multiple tool bridges.
Useful when multiple ACP agents need access to different toolsets.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | |
close_all
async
¶
close_all() -> None
Stop all bridges.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
448 449 450 451 452 | |
create_bridge
async
¶
create_bridge(
name: str,
tool_manager: ToolManager,
pool: AgentPool[Any],
*,
owner_agent_name: str | None = None,
input_provider: InputProvider | None = None
) -> ToolManagerBridge
Create and register a new bridge.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Unique name for this bridge |
required |
tool_manager
|
ToolManager
|
ToolManager to expose |
required |
pool
|
AgentPool[Any]
|
Agent pool for context |
required |
owner_agent_name
|
str | None
|
Optional owner agent name |
None
|
input_provider
|
InputProvider | None
|
Optional input provider |
None
|
Returns:
| Type | Description |
|---|---|
ToolManagerBridge
|
Started ToolManagerBridge |
Source code in src/llmling_agent/mcp_server/tool_bridge.py
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
get_all_mcp_configs
¶
get_all_mcp_configs() -> list[HttpMcpServer | SseMcpServer]
Get MCP server configs for all active bridges.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
454 455 456 | |
get_bridge
async
¶
get_bridge(name: str) -> ToolManagerBridge
Get a bridge by name.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
435 436 437 438 439 440 | |
remove_bridge
async
¶
remove_bridge(name: str) -> None
Stop and remove a bridge.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
442 443 444 445 446 | |
ToolManagerBridge
dataclass
¶
Exposes a ToolManager's tools as an MCP server for ACP agents.
This bridge allows external ACP agents to access our internal toolsets (SubagentTools, AgentManagementTools, etc.) via HTTP MCP transport.
The bridge creates synthetic AgentContext instances for tool invocations, allowing tools that need pool access to work correctly.
Example
async with AgentPool() as pool:
agent = pool.agents["my_agent"]
bridge = ToolManagerBridge(
tool_manager=agent.tools,
pool=pool,
config=BridgeConfig(port=8765),
)
async with bridge:
# Bridge is running, get MCP config for ACP agent
mcp_config = bridge.get_mcp_server_config()
# Pass to ACP agent...
Source code in src/llmling_agent/mcp_server/tool_bridge.py
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 | |
config
class-attribute
instance-attribute
¶
config: BridgeConfig = field(default_factory=BridgeConfig)
Bridge configuration.
input_provider
class-attribute
instance-attribute
¶
input_provider: InputProvider | None = None
Optional input provider for tool confirmations.
owner_agent_name
class-attribute
instance-attribute
¶
owner_agent_name: str | None = None
Name of the agent that owns this bridge (for context creation).
__aenter__
async
¶
__aenter__() -> Self
Start the MCP server.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
118 119 120 121 | |
__aexit__
async
¶
__aexit__(*args: object) -> None
Stop the MCP server.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
123 124 125 | |
get_mcp_server_config
¶
get_mcp_server_config() -> HttpMcpServer | SseMcpServer
Get ACP-compatible MCP server configuration.
Returns config suitable for passing to ACP agent's NewSessionRequest.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
164 165 166 167 168 169 170 171 172 173 174 | |
invoke_tool_with_context
async
¶
invoke_tool_with_context(tool: Tool, agent_ctx: AgentContext[None], kwargs: dict[str, Any]) -> Any
Invoke a tool with proper context injection.
Handles tools that expect AgentContext, RunContext, or neither.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
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 | |
start
async
¶
start() -> None
Start the HTTP MCP server in the background.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
127 128 129 130 131 | |
stop
async
¶
stop() -> None
Stop the HTTP MCP server.
Source code in src/llmling_agent/mcp_server/tool_bridge.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
create_tool_bridge
async
¶
create_tool_bridge(
tool_manager: ToolManager,
pool: AgentPool[Any],
*,
host: str = "127.0.0.1",
port: int = 0,
transport: str = "sse",
owner_agent_name: str | None = None,
input_provider: InputProvider | None = None
) -> AsyncIterator[ToolManagerBridge]
Create and start a ToolManagerBridge as a context manager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_manager
|
ToolManager
|
ToolManager whose tools to expose |
required |
pool
|
AgentPool[Any]
|
Agent pool for context creation |
required |
host
|
str
|
Host to bind to |
'127.0.0.1'
|
port
|
int
|
Port to bind to (0 = auto-select) |
0
|
transport
|
str
|
Transport protocol ('sse' or 'streamable-http') |
'sse'
|
owner_agent_name
|
str | None
|
Name of owning agent for context |
None
|
input_provider
|
InputProvider | None
|
Optional input provider |
None
|
Yields:
| Type | Description |
|---|---|
AsyncIterator[ToolManagerBridge]
|
Running ToolManagerBridge instance |
Source code in src/llmling_agent/mcp_server/tool_bridge.py
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 379 380 381 382 383 | |