MCP Tools¶
Toolplane registers MCP tools as capabilities. The runtime exposes both stable canonical ids and Python-friendly aliases.
mcp:context7/get_docs # canonical id
context7_get_docs(...) # flat alias when unambiguous
context7.get_docs(...) # scoped namespace
In-Process FastMCP¶
Standard MCP Config¶
await runtime.register_mcp_config({
"mcpServers": {
"context7": {
"url": "https://mcp.context7.com/mcp",
}
}
})
Canonical ids remain the escape hatch
Friendly aliases are for authoring convenience. Canonical capability ids are
still available through call_tool(...) and remain stable when aliases
would collide.