We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DamionR/RivalSearchMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
common.py•345 B
"""
Common schemas for FastMCP server.
Handles generic response schemas and common data structures.
"""
from pydantic import BaseModel, Field
class SuccessResponse(BaseModel):
"""Generic success response."""
success: bool = Field(default=True, description="Operation success")
message: str = Field(description="Success message")