We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrisdoc/hevy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
httpServer.ts•332 B
/**
* Legacy placeholder exported to provide a clear error for downstream consumers.
* HTTP transport support has been removed from hevy-mcp and only stdio mode is supported.
*/
export function createHttpServer(): never {
throw new Error(
"HTTP transport mode has been removed from hevy-mcp. Please connect via stdio.",
);
}