UNPKG

hevy-mcp

Version:

A Model Context Protocol (MCP) server implementation that interfaces with the Hevy fitness tracking app and its API.

21 lines (19 loc) 591 B
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { z } from "zod"; //#region src/index.d.ts declare const serverConfigSchema: z.ZodObject<{ apiKey: z.ZodString; }, z.core.$strip>; declare const configSchema: z.ZodObject<{ apiKey: z.ZodString; }, z.core.$strip>; type ServerConfig = z.infer<typeof serverConfigSchema>; declare function createServer({ config }: { config: ServerConfig; }): McpServer; declare function runServer(): Promise<void>; //#endregion export { configSchema, createServer as default, runServer }; //# sourceMappingURL=index.d.mts.map