@vreippainen/hevy-mcp-server
Version:
A MCP server for Hevy
20 lines (19 loc) • 411 B
TypeScript
/**
* Interface for a routine returned from the Hevy API
*/
export interface Routine {
id: string;
name: string;
description: string;
exercises: string[];
createdAt: string;
updatedAt: string;
}
/**
* Interface for the response containing a list of routines from the Hevy API
*/
export interface RoutineResponse {
routines: Routine[];
page: number;
page_count: number;
}