We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lakr233/iphone-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
models.py•262 B
from __future__ import annotations
from typing import Any
from pydantic import BaseModel
class MCPError(BaseModel):
code: str
message: str
class MCPResponse(BaseModel):
success: bool
data: Any | None = None
error: MCPError | None = None