We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geopolitis/MCP-f-Secrets'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
def mount_fastapi_mcp(app):
try:
from fastapi_mcp import FastApiMCP
mcp = FastApiMCP(app)
try:
mcp.mount_http(app, "/mcp")
except TypeError:
mcp.mount_http("/mcp")
except Exception as e:
print(f"[WARN] MCP not mounted: {e}")