tool_bridge
Class info¶
Classes¶
| Name | Children | Inherits |
|---|---|---|
| BridgeConfig llmling_agent.mcp_server.tool_bridge Configuration for the ToolManager MCP bridge. |
||
| 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. |
||
| _BridgeTool llmling_agent.mcp_server.tool_bridge Custom FastMCP Tool that wraps a llmling-agent Tool. |
🛈 DocStrings¶
MCP server bridge for exposing ToolManager tools to ACP agents.
This module provides a bridge that exposes a ToolManager's tools as an MCP server using HTTP transport. This allows ACP agents (external agents like Claude Code, Gemini CLI, etc.) to use our internal toolsets like SubagentTools, AgentManagementTools, etc.
The bridge runs in-process on the same event loop, providing direct access to the pool and avoiding IPC serialization overhead.
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'.
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 | |