We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/odos-xyz/odos-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•386 B
"""
Main server script for the Odos MCP client using FastMCP.
This script imports the centralized FastMCP application instance,
which already has tools registered, and starts the Uvicorn server.
"""
from . import ( # Import all tools to ensure registration # pylint: disable=unused-import
tools,
)
from .mcp import mcp
if __name__ == "__main__":
mcp.run(transport="stdio")