We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/the-momentum/apple-health-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import sys
from fastmcp import FastMCP
from app.config import settings
from app.mcp.v1.mcp import mcp_router
print("SETUP -> Setting up the app", file=sys.stderr)
mcp = FastMCP(settings.PROJECT_NAME)
mcp.mount(mcp_router)
if __name__ == "__main__":
mcp.run()