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
hevyClient.ts•328 B
// Import the Kubb-based client
import { createClient as createKubbClient } from "./hevyClientKubb.js";
export function createClient(apiKey: string, baseUrl: string) {
return createKubbClient(apiKey, baseUrl);
}
// Export the HevyClient type for use in other modules
export type HevyClient = ReturnType<typeof createClient>;