We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/At0mXploit/Trackor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•251 B
# Just for Demo
from fastmcp import FastMCP
from mcp import app # Import FastAPI app
# Convert FastAPI into MCP server
mcp = FastMCP.from_fastapi(
app=app,
name="Expense Tracker Server"
)
if __name__ == "__main__":
mcp.run()