We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/loli0123456789/MCPWebChat'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
schemas.py•324 B
# 假设该类定义在 schemas.py 文件中,如果实际位置不同,请调整路径
from pydantic import BaseModel
from typing import Union
class ApiResponse(BaseModel):
errCode: int
errMsg: str
data: Union[dict, list, int, str, None] # 修改此处,允许 data 为字典或列表
playload: str