npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rundida/mcp-server

v1.1.0

Published

MCP server for RunDida running tools — marathon data, pace calculations, heart rate zones, and race predictions for AI agents

Readme

@rundida/mcp-server

MCP server for RunDida — the world's most comprehensive running tools platform.

Give your AI assistant access to 86 running calculators, 29 marathon events, pace/time/distance calculations, race time predictions, and heart rate training zones.

Website npm License: MIT

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "rundida": {
      "command": "npx",
      "args": ["-y", "@rundida/mcp-server"]
    }
  }
}

Claude Code

claude mcp add rundida -- npx -y @rundida/mcp-server

Cursor / Windsurf

Add to your MCP configuration:

{
  "rundida": {
    "command": "npx",
    "args": ["-y", "@rundida/mcp-server"]
  }
}

Available Tools

| Tool | Type | Description | |------|------|-------------| | list_tools | Data | Browse all 86 running calculators with descriptions | | get_tool | Data | Get details, FAQs, and sources for a specific tool | | list_marathons | Data | List 29 marathon events with dates and locations | | get_marathon | Data | Get marathon details including weather and course profile | | calculate_pace | Compute | Calculate pace, time, or distance (provide any 2 of 3) | | predict_race | Compute | Predict race times using Riegel formula + VO2max estimation | | heart_rate_zones | Compute | Calculate 5 HR training zones (Karvonen method) | | marathon_countdown | Compute | Get countdown to a specific marathon event |

Data tools fetch from the RunDida API with 30-minute caching. Compute tools run locally with zero latency — no API calls needed.

Example Usage

Ask your AI assistant:

  • "What's my marathon pace if I want to finish in 3:30?"
  • "Predict my marathon time based on my 10K of 45 minutes"
  • "What are my heart rate zones? I'm 32 with a resting HR of 52"
  • "How many days until the Tokyo Marathon?"
  • "Show me all running calculators related to nutrition"

About RunDida

RunDida (跑滴答) is a free running tools platform for runners of all levels:

  • 86 Interactive Calculators — Pace, heart rate zones, VO2max, race prediction, nutrition, gear sizing, weather impact, and more
  • 29 Marathon Countdowns — Live timers with race-day weather forecasts, course profiles, and training tools
  • Free JSON API — No authentication required, CORS enabled, OpenAPI 3.0 documented
  • Multi-language — English, Chinese (中文)
  • Embeddable Widgets — One-line iframe embed for any calculator

All tools are free, no account required. Try them at rundida.com.

How It Works

The computation tools use established running science formulas:

| Formula | Used In | Description | |---------|---------|-------------| | Riegel formula | predict_race | Race time prediction across distances | | Jack Daniels method | predict_race | VO2max estimation from race performance | | Karvonen method | heart_rate_zones | Heart rate training zones from age and resting HR |

Requirements

  • Node.js >= 18
  • Internet connection (data tools fetch from rundida.com)

Links

| Resource | URL | |----------|-----| | RunDida Website | rundida.com | | API Documentation | rundida.com/api | | OpenAPI Spec | rundida.com/api/openapi.json | | NPM Package | @rundida/mcp-server |

License

MIT