We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/box-community/mcp-server-box'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•332 B
# src/tool_registry/__init__.py
from typing import Callable, List
from mcp.server.fastmcp import FastMCP
ToolRegistrar = Callable[[FastMCP], None]
def register_all_tools(mcp: FastMCP, registrars: List[ToolRegistrar]):
"""Register all tools from provided registrars"""
for registrar in registrars:
registrar(mcp)