# Fitness Tools (remote · fitness-tools-mcp.ajwallacemusic.workers.dev)

Deterministic fitness calculators — TDEE, adaptive TDEE, body fat, 1RM, macros — with consensus.

- Trust score: 60/100 (medium)
- Change this week: +7
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `fitness-tools-mcp.ajwallacemusic.workers.dev`: 60/100 (this document), [markdown](https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp.md), [page](https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp)
- npm · `@almostjacked/fitness-tools-mcp`: 46/100, [markdown](https://verifymcp.io/servers/almostjacked-fitness-tools/almostjacked-fitness-tools-mcp.md), [page](https://verifymcp.io/servers/almostjacked-fitness-tools/almostjacked-fitness-tools-mcp)

## Channel facts

- Endpoint: `https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.3.4`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 43/100
  - AI-judged instruction clarity (poor).
  - Tool/resource definitions use about 1010 tokens (~101/item across 10 items; 10 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 72/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 2% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http almostjacked-fitness-tools https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp
```

### Codex

```toml
[mcp_servers.almostjacked-fitness-tools]
url = "https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "almostjacked-fitness-tools": {
      "type": "remote",
      "url": "https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add almostjacked-fitness-tools --url https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  almostjacked-fitness-tools:
    url: "https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp"
```

### Other

```json
{
  "mcpServers": {
    "almostjacked-fitness-tools": {
      "type": "http",
      "url": "https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 60, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 59, +4)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 55, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 54, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 53, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 52)

First indexed and scored.

## MCP tools (10)

### `tdee` (~105 tokens)

Total Daily Energy Expenditure

Estimate BMR and TDEE via Mifflin-St Jeor, Harris-Benedict, Katch-McArdle, and Cunningham. Provide body_fat or lean_mass to unlock the LBM-based methods.

Input parameters:

- `activity` (required)
- `age` (number, required)
- `body_fat`
- `height` (object, required)
- `lean_mass`
- `methods`
- `sex` (string, required)
- `weight` (object, required)

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

### `adaptive-tdee` (~220 tokens)

Adaptive TDEE

Measure actual TDEE from a logged history of daily weight and/or calorie intake. Default method (kalman) is a joint Kalman filter over true weight and TDEE — handles missing days, gates outliers, and reports uncertainty (CI95) alongside denoised true weight; regression/endpoints are simple window-based estimates kept for comparison. Use instead of formula TDEE once real logged data exists. Each entry needs at least one of weight/kcal (not necessarily both). Entry dates must span 10 years or less (earliest to latest). Note: all methods need at least one weigh-in (kalman) or two (regression/endpoints) — a history with zero weight entries throws under the kalman default; pass methods:'all' to get a graceful empty/skipped result instead.

Input parameters:

- `entries` (array, required)
- `methods`
- `prior_tdee_kcal` (number): Optional starting TDEE estimate, e.g. from the tdee tool; speeds early convergence.
- `window_days` (integer)

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

### `body-fat` (~86 tokens)

Body Fat Percentage

Estimate body-fat % via US Navy circumference, Jackson-Pollock 3-site skinfold, and Deurenberg (BMI-based) methods.

Input parameters:

- `age`
- `height`
- `hip`
- `methods`
- `neck`
- `sex` (string, required)
- `skinfold_sum`
- `waist`
- `weight`

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

### `one-rep-max` (~71 tokens)

One-Rep Max

Estimate 1RM from a submaximal set via Epley, Brzycki, Lombardi, Wathan, O'Conner, and Mayhew; returns a %1RM load chart.

Input parameters:

- `methods`
- `reps` (integer, required)
- `weight` (object, required)

Output parameters:

- `consensus`
- `percent_table` (array)
- `results` (array)

### `macros` (~78 tokens)

Macronutrient Split

Compute protein/fat/carb grams for a calorie target using the g-per-kg-bodyweight method, with goal-based protein defaults.

Input parameters:

- `calories` (number, required)
- `fat_g_per_kg`
- `goal` (string)
- `methods`
- `protein_g_per_kg`
- `weight` (object, required)

Output parameters:

- `consensus`
- `results` (array)

### `activity-multiplier` (~95 tokens)

Activity Multiplier

Estimate the TDEE activity multiplier via the classic lookup table or a NEAT+EAT model (occupation/steps for non-exercise, training volume for exercise).

Input parameters:

- `activity_level`
- `bmr`
- `intensity`
- `methods`
- `occupation`
- `session_minutes`
- `sessions_per_week`
- `steps_per_day`
- `weight`

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

### `powerlifting-attempts` (~77 tokens)

Powerlifting Meet Attempts

Deterministic opener/second/third attempts from an estimated 1RM, plus a warmup ramp and per-side plate loading. Tunable by aggressiveness and available plates.

Input parameters:

- `aggressiveness` (string)
- `available_plates`
- `bar_weight`
- `one_rep_max` (object, required)

Output parameters:

- `aggressiveness` (string)
- `attempts` (object)
- `bar_weight` (number)
- `unit` (string)
- `warmups` (array)

### `muscle-potential` (~95 tokens)

Maximum Muscular Potential

Estimate drug-free maximum bodyweight at a target body-fat % via Casey Butt (wrist+ankle), the FFMI~25 natural cap, and Berkhan's max-contest-weight model. Men only in v1.

Input parameters:

- `ankle`
- `height` (object, required)
- `methods`
- `sex` (string, required)
- `target_body_fat_pct` (number)
- `wrist`

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

### `ffmi` (~77 tokens)

Fat-Free Mass Index

Compute the Fat-Free Mass Index (FFMI) and its height-adjusted form from weight and body fat (or lean mass), and flag whether it exceeds the ~25 natural ceiling.

Input parameters:

- `body_fat`
- `height` (object, required)
- `lean_mass`
- `methods`
- `weight` (object, required)

Output parameters:

- `consensus`
- `results` (array)

### `rsmi` (~106 tokens)

Relative Skeletal Muscle Index

Estimate the appendicular skeletal muscle index (RSMI) from a DXA value (direct) and/or an anthropometric estimate (Wen 2011), and flag low muscle mass against EWGSOP2, AWGS, and Baumgartner sarcopenia cutoffs.

Input parameters:

- `age` (number, required)
- `asm_kg`
- `height` (object, required)
- `methods`
- `sex` (string, required)
- `weight` (object, required)

Output parameters:

- `consensus`
- `results` (array)
- `skipped` (array)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 59
- 2026-08-01: 59
- 2026-07-31: 59
- 2026-07-30: 55
- 2026-07-29: 54
- 2026-07-28: 54
- 2026-07-27: 53
- 2026-07-26: 52

## Links

- Remote endpoint: https://fitness-tools-mcp.ajwallacemusic.workers.dev/mcp
- Repository: https://github.com/almostjacked/fitness-tools
- Changelog RSS feed: https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/almostjacked-fitness-tools/fitness-tools-mcp
