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
getV1WorkoutsCountSchema.ts•492 B
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from 'zod'
export const getV1WorkoutsCountHeaderParamsSchema = z.object({
'api-key': z.string().uuid(),
})
/**
* @description The total count of workouts
*/
export const getV1WorkoutsCount200Schema = z.object({
workout_count: z.number().int().default(42).describe('The total number of workouts'),
})
export const getV1WorkoutsCountQueryResponseSchema = z.lazy(() => getV1WorkoutsCount200Schema)