A secure MCP server that lets you retrieve data from your Runalyze account.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"runalyze": {
"env": {
"RUNALYZE_API_TOKEN": "your-api-token-here"
},
"args": [
"/absolute/path/to/runalyze-mcp-server/dist/main.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Access your Runalyze health metrics through AI assistants using the Model Context Protocol (MCP)
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
Manage your Hevy workouts, routines, folders, and exercise templates. Create and update sessions faster, organize plans, and search exercises to build workouts quickly. Stay synced with changes so your training log is always up to date.
MCP server for Oura Ring API v2 (sleep, activity, readiness, heart rate, workouts).
MCP Security Weekly
Get CVE alerts and security updates for Runalyze Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Access your Runalyze health metrics through AI assistants using the Model Context Protocol (MCP)
A secure MCP server that lets you retrieve health data (HRV, Sleep, Resting Heart Rate, Activities) from your Runalyze account directly within AI chat applications like Claude Desktop and ChatGPT Desktop.
This server can be used in two ways. Choose the option that works best for you:
🖥️ Local SetupRun on your own computer Pros:
Cons:
Setup time: ~5 minutes |
☁️ Hosted SetupUse our hosted server Pros:
Cons:
Setup time: ~2 minutes Server URL: |
Security Note: Both options are secure. The hosted version does NOT store your API token - you provide it with each request, just like the local version stores it in your config file.
Run the MCP server on your own computer.
Before you start, make sure you have:
# Clone the repository
git clone https://github.com/floriankimmel/runalyze-mcp-server.git
cd runalyze-mcp-server
Devbox provides isolated, reproducible dev environments.
Install devbox and direnv:
# macOS
brew install devbox direnv
Enable direnv in the project:
direnv allow
Run devbox scripts:
devbox run install # yarn install
devbox run build # yarn build
devbox run dev # yarn start:dev
devbox run dev:http # yarn start:http:dev
# Install dependencies
yarn install
# Build the server
yarn build
The compiled server will be in the dist/ directory.
Choose your AI assistant and follow the configuration steps:
Locate your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the server configuration:
{
"mcpServers": {
"run
... [View full README on GitHub](https://github.com/floriankimmel/runalyze-mcp-server#readme)