intervals-icu-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
intervals-icu-mcp by eddmann | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | ProductivityhealthAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 6 mo ago | this month |
intervals-icu-mcp · Summary
Comprehensive MCP server for Intervals.icu integration with 48 tools for training data, wellness metrics, and performance analysis.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
intervals-icu-mcp · Use cases
- Analyze cycling or running performance metrics and training data
- Plan and manage workout schedules and training events
- Track wellness metrics including recovery, sleep, and HRV
- Manage cycling and running gear with maintenance tracking
- Review historical activities and performance curves
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
intervals-icu-mcp · Install
Installation
Prerequisites
- Python 3.11+ and [uv](https://github.com/astral-sh/uv), OR
- Docker
Authentication Setup
- Get your Intervals.icu API key from https://intervals.icu/settings
- Note your Athlete ID from your profile URL (format:
i123456)
Option 1: Using UV
cd intervals-icu-mcp
uv sync
# Configure credentials
uv run intervals-icu-mcp-authOption 2: Using Docker
docker build -t intervals-icu-mcp .
# Create and configure env file
touch intervals-icu-mcp.env
docker run -it --rm -v "$(pwd)/intervals-icu-mcp.env:/app/.env" intervals-icu-mcp:latest python -m intervals_icu_mcp.scripts.setup_authClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"intervals-icu": {
"command": "uv",
"args": [
"run",
"--directory",
"/ABSOLUTE/PATH/TO/intervals-icu-mcp",
"intervals-icu-mcp"
]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.