We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/merakimiles/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from typing import Any, Dict, Optional
from pydantic import BaseModel, Field
class ErrorResponse(BaseModel):
"""Standard error response schema."""
error: bool = True
message: str = Field(..., description="Error message explaining what went wrong")
example: Optional[str] = Field(None, description="Example of correct usage")
note: Optional[str] = Field(None, description="Additional notes or guidance")