# Pace Calculator — MCP tool `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.

- Category: calculators
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/pace-calculator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/pace-calculator/
- Same tool on the other surface: https://findutils.com/api/pace-calculator/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "pace_calculator",
      "arguments": {
        "distance": 10,
        "time": "50:00",
        "unit": "km",
        "solve_for": "pace"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `distance` | number | no | Distance in the chosen unit. Needed unless solve_for is "distance". |
| `time` | string | no | Finish time as mm:ss or h:mm:ss. Needed unless solve_for is "time". |
| `pace` | string | no | Pace per unit as mm:ss. Needed unless solve_for is "pace". |
| `unit` | string (km \| mi) | no | Distance unit for both the distance and the pace. Default: `"km"`. |
| `solve_for` | string (pace \| time \| distance) | no | Which value to compute from the other two. Default: `"pace"`. |

Example arguments (verified):

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

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/pace-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "distance": 10,
    "time": "50:00",
    "unit": "km",
    "solve_for": "pace"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/pace-calculator
```

Full REST reference: https://findutils.com/api/pace-calculator/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
