fuelcenter
Server Details
Marathon fueling, pace, hydration, heat, carb-loading, and gel-comparison calculators.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 7 of 7 tools scored.
Most tools have clearly distinct purposes, but heat-adjustment and hydration both estimate fluid needs based on temperature and humidity, which could cause an agent to select the wrong one. The other tools (carb-loading vs fueling-plan, pace-calculator vs race-time-predictor) are well-differentiated by their pre-race vs during-race and basic vs predictive focus.
All tool names are lowercase and use hyphens to join words (e.g., carb-loading, fueling-plan). The pattern is consistent and predictable, with no mixing of camelCase, snake_case, or other conventions. Even 'hydration' fits as a single-word name matching the overall simplicity.
Seven tools is a well-scoped set for a running-fueling domain. Each tool addresses a distinct aspect of race preparation and execution, and none feel redundant or unnecessary. This is squarely in the optimal 3-15 range.
The tool surface covers the full pre-race and race-day fueling workflow: pace/race-time prediction, fueling plan generation, hydration, heat adjustment, carb-loading, and gel selection. No obvious gaps exist for the stated purpose of creating and refining race fueling strategies.
Available Tools
7 toolscarb-loadingCarb Loading CalculatorARead-onlyIdempotentInspect
Calculate pre-race carb loading targets by race type, body weight, finish time, and experience level. Returns daily carb target, protocol length, total carbs, and pre-race meal size.
| Name | Required | Description | Default |
|---|---|---|---|
| raceType | Yes | Race distance category. | |
| experience | Yes | Runner experience level. | |
| hasGIIssues | No | Whether the runner has a sensitive stomach. Default false. | |
| bodyWeightLbs | Yes | Body weight in pounds. | |
| finishTimeHours | Yes | Expected finish time, hours portion. | |
| finishTimeMinutes | Yes | Expected finish time, minutes portion. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering safety. The description adds valuable behavioral context by listing exactly what the tool returns (daily carb target, protocol length, total carbs, pre-race meal size), which is not included in annotations. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the main purpose and includes output data. Every word contributes to the overall understanding; there is no fluff or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that the schema fully documents parameters and an output schema is absent, the description names the return values sufficiently. It does not explain hasGIIssues explicitly, but that is covered in the schema. The description is complete enough for a read-only calculator, though additional details about result units or edge cases could improve it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are already documented. The description redundantly mentions some inputs (race type, body weight, finish time, experience) without adding new meaning beyond the schema. It does not cover hasGIIssues or provide units/syntax details, so it adds no semantic value over the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Calculate') and resource ('pre-race carb loading targets'), along with key inputs (race type, body weight, finish time, experience level) and outputs. It clearly distinguishes itself from sibling tools like fueling-plan or hydration by focusing specifically on carb loading.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case (pre-race carb loading calculation) but does not explicitly mention when to prefer this tool over siblings or provide exclusion criteria. It offers a clear context but lacks alternatives or when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fueling-planFueling PlanBRead-onlyIdempotentInspect
Build a minute-by-minute race or long-run fueling plan. Returns target carbs/hour, gel count, gel timing schedule, and total carbs. This is the core FuelCenter tool.
| Name | Required | Description | Default |
|---|---|---|---|
| hours | Yes | Race or run duration, hours portion. | |
| buffer | No | Minutes of buffer at start and end where no gel is taken. Default 5. | |
| gelKey | Yes | Gel product key. See /api/tools/gel-comparison for full catalog. | |
| minutes | Yes | Race or run duration, minutes portion. | |
| drinkMix | No | Whether the runner uses a carbohydrate drink mix. Default false. | |
| intensity | Yes | Effort level. | |
| targetCPH | No | Target carbs per hour. If omitted, default is derived from guideline. | |
| experience | No | Runner experience with fueling. Default "standard". | |
| drinkCarbsTotal | No | Total grams of carbs from drink mix across the run. Default 0. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so safety is covered. The description adds output details (returns target carbs, gel count, timing) but doesn't disclose any algorithmic behavior or edge cases. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the primary action and output. The phrase 'core FuelCenter tool' is minor extra but not wasteful. Every sentence serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Complex tool with 9 parameters and no output schema, but the description states the key return values and the schema fully documents inputs. Given the rich schema and simple read-only nature, the description is largely sufficient, though it could mention interaction with related tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with individual descriptions, so the description need not repeat them. The description adds no extra parameter semantics beyond listing general outputs, which aligns with the baseline for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: 'Build a minute-by-minute race or long-run fueling plan' and lists key outputs (target carbs/hour, gel count, schedule, total carbs). It distinguishes from siblings by its focus on plan generation, though it doesn't explicitly name alternatives like gel-comparison.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance or explicit comparison to sibling tools. 'This is the core FuelCenter tool' implies centrality but doesn't explain when to choose this over carb-loading, hydration, or gel-comparison. Users must infer usage from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gel-comparisonGel ComparisonARead-onlyIdempotentInspect
Return the FuelCenter gel catalog (SiS Beta Fuel, Maurten, Precision, GU, Tailwind, Spring, Carbs Fuel, neversecond, Huma) with carbs, price, caffeine, weight, and carbs-per-dollar. Optionally sort.
| Name | Required | Description | Default |
|---|---|---|---|
| sortKey | No | Column to sort by. Default "carbsPerDollar". | |
| sortDirection | No | Sort direction. Default "desc". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only, idempotent, and non-destructive, so the description doesn't need to repeat that. It adds valuable scope context by listing the exact gel brands and fields returned, which clarifies the tool's output behavior beyond what annotations provide. No contradictions exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core action and includes necessary specifics (brands, fields, optional sorting). Every word adds value with no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only catalog tool with no output schema, the description adequately covers the return contents (brands and attributes) and optional sorting. It lacks details about return format or limitations, but the low complexity and rich annotations make this sufficient for agent selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters (sortKey and sortDirection) having clear descriptions, defaults, and enums. The description only states 'Optionally sort', providing minimal added meaning. This matches the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a specific resource (FuelCenter gel catalog) with a list of brands and fields. The verb 'Return' is specific and the description distinguishes it from planning tools by focusing on catalog data and sorting, rather than calculations or plans.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied: you use this tool to get the gel catalog and optionally sort it. However, there is no explicit guidance on when to prefer this over siblings like fueling-plan or carb-loading, and no alternatives are mentioned. The description lacks direct 'use when' or 'use instead' phrasing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
heat-adjustmentHeat AdjustmentARead-onlyIdempotentInspect
Estimate how temperature and humidity will slow your race pace and change your fluid needs. Returns adjusted pace, slowdown percent, dew point, risk level, and fueling note.
| Name | Required | Description | Default |
|---|---|---|---|
| tempF | Yes | Air temperature at race time in degrees Fahrenheit. | |
| humidity | Yes | Relative humidity as a percentage, 0-100. | |
| distanceMiles | Yes | Race distance in miles. | |
| paceSecondsPerMile | Yes | Your goal pace in seconds per mile (cool-weather pace). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a safe, read-only, idempotent operation. The description adds value by specifying the exact outputs (adjusted pace, slowdown percent, dew point, risk level, fueling note) and the fact that it estimates, providing useful behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core purpose followed by a bullet-like list of return values. Every word earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a calculation tool with no output schema, the description compensates by clearly enumerating the return values. Combined with full parameter documentation and clear annotations, the tool is fully specified for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so all parameters are already well-documented. The description reinforces the relevance of temperature and humidity but does not add new parameter-level details beyond what the schema provides, matching the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool estimates how temperature and humidity affect race pace and fluid needs, with specific return values listed. This distinguishes it from sibling tools like pace-calculator and race-time-predictor, which focus on other aspects of race performance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool—when temperature and humidity are factors in race pacing. It does not explicitly mention alternatives or exclusions, but the context is unambiguous enough for an agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hydrationHydration CalculatorARead-onlyIdempotentInspect
Estimate fluid and sodium needs for a race or long run based on body weight, duration, intensity, temperature, and humidity.
| Name | Required | Description | Default |
|---|---|---|---|
| tempF | Yes | Temperature in Fahrenheit. | |
| humidity | Yes | Relative humidity, 0-100. | |
| intensity | Yes | Effort level. | |
| bodyWeightLbs | Yes | Body weight in pounds. | |
| durationMinutes | Yes | Run or race duration in minutes. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, non-destructive, idempotent behavior, so the description need not repeat those. However, the description adds little beyond that, such as limitations of the estimate or output format. It does not contradict the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with a clear verb and resource. Every word earns its place, and there is no redundant phrasing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple calculator with full schema coverage and safe annotations, the description adequately conveys what the tool does and the inputs it uses. It implies the output ('fluid and sodium needs') without detailing units, which is acceptable given no output schema but could be slightly more explicit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description restates the parameter list without adding extra semantics or clarifying units/enum values. It does not compensate for any schema gaps because there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose ('estimate fluid and sodium needs') and identifies the context (race or long run). It is specific and distinguishes from related tools by topic, though it does not explicitly name sibling tools or differentiate from them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool ('for a race or long run') and lists the relevant inputs. It does not explicitly state when not to use it or mention alternatives, but the context is sufficient for most agents.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pace-calculatorPace CalculatorARead-onlyIdempotentInspect
Given any two of distance, total time, or pace-per-mile, calculate the third. Returns pace per mile, per km, splits, and speed.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | Yes | Which field to solve for. | |
| totalSeconds | No | Required for mode "pace" or "distance". | |
| distanceMiles | No | Required for mode "pace" or "time". | |
| paceSecondsPerMile | No | Required for mode "time" or "distance". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly and non-destructive hints. The description adds meaningful behavioral context by specifying the outputs (pace per mile/km, splits, speed), which goes beyond the annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the primary function and output summary. No filler words or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the calculator tool and the rich schema, the description is sufficiently complete. It lists the key outputs and clarifies the input relationships, though it does not cover edge cases like zero values, which are unlikely to be required.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all parameters with descriptions, so the baseline is 3. The description adds semantic meaning by explaining the interdependency of the parameters (any two determine the third), which is not apparent from the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: given any two of distance, time, or pace, it calculates the third. This specific verb+resource combination distinguishes it from siblings like race-time-predictor.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the core usage rule (any two inputs to compute the third), but it does not explicitly state when to use this tool over alternatives or mention exclusions. Sibling tools like fueling-plan or race-time-predictor are not referenced.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
race-time-predictorRace Time PredictorARead-onlyIdempotentInspect
Predict your finish time at common distances (5K through 100 miles) from a recent race result using the Riegel formula.
| Name | Required | Description | Default |
|---|---|---|---|
| exponent | No | Riegel exponent. Default 1.06. | |
| knownTimeSeconds | Yes | Finish time for that race, in total seconds. | |
| knownDistanceMiles | Yes | Distance of your recent race, in miles. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the Riegel formula and common distance range, giving useful context about the calculation method, but does not disclose edge cases, limitations, or return format. This adds some value beyond annotations but not extensively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence. It is front-loaded with the main action ('Predict your finish time'), and every word contributes to the meaning without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple calculator tool, the description covers the purpose, formula, and distance range. Annotations and schema provide additional context. The only minor gap is ambiguity about whether the tool returns predictions for all listed distances or a single one, but this is not critical given the overall clarity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters have full descriptions in the input schema (100% schema description coverage). The description mentions 'recent race result' which maps to knownDistanceMiles and knownTimeSeconds, but adds no semantic details beyond what the schema already provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'predict', names the resource 'finish time', and specifies the distance range (5K through 100 miles) and the Riegel formula. This clearly distinguishes it from siblings like pace-calculator by focusing on predicting finish times from a recent race result.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as pace-calculator. It does not mention sibling tools or any exclusions. Usage is only implied by the description's own phrasing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenance86 running calculators, 29 marathon events, pace/time/distance calculations, race time predictions, and heart rate training zones for AI agents.Last updated10701MIT
- AlicenseAqualityDmaintenanceProvides comprehensive running performance calculations including VDOT, training paces, race time predictions, velocity markers, and heart rate zones using Jack Daniels, Greg McMillan, and Riegel methodologies.Last updated9MIT
- FlicenseAqualityBmaintenanceRace nutrition planning for endurance athletes. Calculates carb, sodium and fluid targets for marathons, ultras, cycling and triathlons. Returns personalised Lecka product recommendations by race type, conditions and athlete weight.Last updated31
- AlicenseAqualityDmaintenanceProvides six deterministic, source-attributed hydration calculators (water intake, dehydration check, pregnancy intake, kidney-safe intake, athlete plan, energy optimization) as MCP tools, enabling AI clients to call them via stdio without custom HTTP coding.Last updated629MIT