Skip to main content
Glama
api.py524 B
"""API v1 router configuration.""" from fastapi import APIRouter from .endpoints import health, herd, auth, mcp, agent api_router = APIRouter() # Include all endpoint routers api_router.include_router(health.router, prefix="", tags=["health"]) api_router.include_router(herd.router, prefix="", tags=["herd"]) api_router.include_router(auth.router, prefix="", tags=["authentication"]) api_router.include_router(mcp.router, prefix="", tags=["mcp"]) api_router.include_router(agent.router, prefix="/agent", tags=["agent"])

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/DPoitrast/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server