RepStack
Related Servers
Alternatives to RepStack
No user-submitted related servers found.
Related Servers
- AlicenseAqualityDmaintenanceA stateless MCP server that exposes tools for evidence-based strength training, including classical powerlifting programs and fatigue management.8MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for Hevy that fetches live workout data and computes analytics like e1RM, PRs, volume, and consistency, while enabling writes for routines, folders, and body measurements without modifying workout history.26 npm1MIT
- AlicenseAqualityAmaintenanceThis MCP server enables logging workouts in plain language through AI assistants and provides tracking of sessions, programs, records, estimated 1RM, and per-muscle load, with coaching informed by the user's logged data.20MIT
- AlicenseNot gradedqualityDmaintenanceA unified MCP server that connects AI assistants to multiple fitness services (Hevy, Strava, Cronometer, Intervals.icu) through a single secure endpoint, enabling workout, nutrition, and activity data access.MIT
- FlicenseNot gradedqualityCmaintenanceA personal health and fitness MCP server that provides tools for managing profile data, goals, body measurements, nutrition, workouts, sleep, check-ins, life events, analytics, and coach memories via Supabase Postgres.1-
- FlicenseNot gradedqualityDmaintenanceA multi-platform fitness MCP server that syncs data from Garmin, Strava, Google Fit, and Suunto into a local DuckDB database and provides analytics tools via MCP.1-
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: ingest_log parses and normalizes workout data, compute_metrics derives analytics from canonical data, and search_exercises queries the exercise registry. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun snake_case pattern: ingest_log, compute_metrics, search_exercises. The naming is predictable and clearly indicates what each tool does.
Three tools is well-scoped for a stateless workout log processing server. Each tool covers a necessary step in the workflow without redundancy or bloat.
The tool set covers the full intended pipeline: ingest raw logs into canonical JSON, compute metrics from canonical sessions, and search exercises for enrichment or validation. Since the design is explicitly stateless, no persistence/retrieval tools are needed.