Skip to content

Pace Calculator MCP tool

MCP findutils:pace_calculator

Running pace calculator. Give any two of distance, finish time and pace, and it solves for the third, then projects 5K, 10K, half marathon and marathon times at that pace. Times accept mm:ss or h:mm:ss; pace is per kilometre or per mile.

Arguments

application/json
  • distance

    number optional

    Distance in the chosen unit. Needed unless solve_for is "distance".

  • time

    string optional

    Finish time as mm:ss or h:mm:ss. Needed unless solve_for is "time".

  • pace

    string optional

    Pace per unit as mm:ss. Needed unless solve_for is "pace".

  • unit

    string optional

    Distance unit for both the distance and the pace. One of km · mi. Default "km".

  • solve_for

    string optional

    Which value to compute from the other two. One of pace · time · distance. Default "pace".

Example arguments

Verified
{
  "distance": 10,
  "time": "50:00",
  "unit": "km",
  "solve_for": "pace"
}