We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcp-bridge/local-filesystem'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
common.py•400 B
"""Common schemas shared across operations."""
from pydantic import BaseModel, Field
class OperationResult(BaseModel):
"""Generic result for create/delete/move operations."""
success: bool = Field(..., description="Whether operation succeeded")
message: str = Field(..., description="Human-readable result message")
path: str = Field(..., description="Path that was operated on")