JEFit MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JEFIT_PASSWORD | Yes | Your JEFit password | |
| JEFIT_TIMEZONE | Yes | Timezone offset format like -07:00 for PDT, -04:00 for EDT | |
| JEFIT_USERNAME | Yes | Your JEFit username |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_workout_datesA | List all workout dates within a date range. Args: start_date: Start date in YYYY-MM-DD format (required) end_date: End date in YYYY-MM-DD format (optional, defaults to today) Returns: List of workout dates as strings in YYYY-MM-DD format |
| get_workout_infoB | Get detailed workout information for a specific date. Args: date: Date in YYYY-MM-DD format Returns: Markdown-formatted workout details including exercises, sets, reps, and weights |
| get_batch_workoutsB | Get detailed workout information for multiple dates in a single call. Args: dates: List of dates in YYYY-MM-DD format Returns: Markdown-formatted workout details for all requested dates |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_batch_workouts retrieves multiple workouts at once, get_workout_info retrieves a single workout, and list_workout_dates lists dates without workout details. There is no overlap in functionality, making tool selection straightforward for an agent.
All tool names follow a consistent verb_noun pattern (get_batch_workouts, get_workout_info, list_workout_dates) with clear, descriptive verbs and nouns. The naming is uniform and predictable throughout the set.
With only 3 tools, the server feels thin for a fitness tracking domain, as it lacks operations like creating, updating, or deleting workouts. While the tools cover basic retrieval and listing, the count is borderline low for comprehensive agent workflows.
The tool set is severely incomplete for a fitness server, offering only read operations (get and list) with no ability to create, update, or delete workouts. This creates significant gaps that will limit agent functionality, as core lifecycle management is missing.