We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AccelByte/ags-api-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
http-server-status.ts•269 B
// HTTP server status tracking (for stdio mode)
// This is in a separate module to avoid circular dependencies
export let httpServerStatus: {
available: boolean;
error: string | null;
port: number | null;
} = {
available: false,
error: null,
port: null,
};