We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thiagovictorino/chat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from importlib import import_module
# Ensure tool modules are imported when package is initialized
_module_names = [
"mcp_server.tools.channel",
"mcp_server.tools.agent",
"mcp_server.tools.messaging",
]
for _name in _module_names:
import_module(_name)