We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cyanty/Arcs-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from typing import Dict
from pydantic import BaseModel, Field
class HomePageData(BaseModel):
result_dict: Dict[str, Dict[str, str]]
show_confirm: bool = Field(
default=False,
description="Whether to display a confirmation popup"
)