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•632 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/SSE transport has been removed from hevy-mcp (since v1.18.0).
The server now only supports stdio transport.
To fix this:
1. Update to the latest version: npx -y hevy-mcp@latest
2. Update your client configuration to use stdio instead of HTTP/SSE
3. Follow the migration guide (includes client examples):
https://github.com/chrisdoc/hevy-mcp#migration-from-httpsse-transport
`);
}