Skip to main content
Glama

MCP Server

by hburgoyne
api.py756 B
""" Main API router that includes all endpoint routers. """ from fastapi import APIRouter from app.api.endpoints import health, oauth, admin, token_management, memories, user_tokens # Create main API router api_router = APIRouter() # Include all endpoint routers api_router.include_router(health.router, prefix="/health", tags=["Health"]) api_router.include_router(oauth.router, prefix="/oauth", tags=["OAuth"]) api_router.include_router(admin.router, prefix="/admin", tags=["Admin"]) api_router.include_router(token_management.router, prefix="/tokens", tags=["Token Management"]) api_router.include_router(memories.router, prefix="/memories", tags=["Memories"]) api_router.include_router(user_tokens.router, prefix="/user-tokens", tags=["User Tokens"])

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/hburgoyne/picard_mcp'

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