Boostcamp MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Boostcamp MCP ServerShow my recent workout history"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Boostcamp MCP Server
A Model Context Protocol (MCP) server for integrating with the Boostcamp fitness platform. It gives Claude Desktop and Claude Code seamless access to your training history, workout programs, custom exercises, and analytics.
Built on the boostcamp-api Python library — a wrapper around Boostcamp's private API.
Attribution: This project began as a fork of
Alex-Keyes/boostcamp-mcpand builds onAlex-Keyes/boostcamp-apiby Alex Keyes. It is now maintained as a standalone project. See Credits.
🚀 Quick Start
1. Installation
Clone this repository:
git clone https://github.com/dcaslin/boostcamp-mcp.git cd boostcamp-mcpInstall dependencies with
uv:uv sync
2. One-Time Authentication
Authentication runs through a standalone script so your credentials are never handled by the MCP client. From the project directory:
uv run loginFollow the prompts:
Enter your Boostcamp email and password.
The script authenticates against the Boostcamp API and saves your session token as
BOOSTCAMP_AUTH_TOKENin a local.envfile (ignored by git).
Your email and password are only used to obtain the token and are never stored.
3. Register the Server with Claude
Claude Code (CLI):
claude mcp add boostcamp -- uv run --directory /path/to/your/boostcamp-mcp boostcamp-mcpClaude Desktop: add this to your config file —
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"boostcamp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/your/boostcamp-mcp",
"boostcamp-mcp"
]
}
}
}Important: Replace /path/to/your/boostcamp-mcp with the actual path to your clone. The server reads .env from that directory, so it must match where you ran uv run login. Restart Claude Desktop after editing the config.
4. Start Using
Once connected, ask Claude to use the tools directly, e.g.:
"Show my Boostcamp profile" →
get_my_profile"What programs am I enrolled in?" →
list_enrolled_programs"Review my recent workouts" →
get_training_history"What's my dashboard streak and totals?" →
get_home_summary
Related MCP server: Arvo MCP Server
✨ Features
📊 Fitness Analytics
Home Summary: total workouts, total weight moved, and current week streak.
Volume Charts: training volume over time.
Muscle Distribution: which muscle groups you've been targeting.
🏋️ Workout Management
Program Details: full workout plans, including sets, reps, and coach notes.
Enrolled Programs: track your progress in active training plans.
Custom Exercises: access exercises you've manually created.
📚 Content & Discovery
Program Catalog: search and list programs available on the platform.
Blog Access: read the latest articles and training guides from the Boostcamp blog.
🛠️ Available Tools
Tool | Description | Parameters |
| Get user profile and settings | None |
| List your active programs | None |
| Get detailed workout history |
|
| View your subscription/orders | None |
| List your custom exercises | None |
| Search the program catalog |
|
| Get the full plan for a program ID |
|
| List recent blog posts |
|
| Dashboard stats (streak/totals) |
|
| Active/recent program summary |
|
| Training volume chart data |
|
| Muscle group distribution |
|
timezone_offset is in minutes from UTC and defaults to -300.
🔧 Troubleshooting
Authentication Issues
If a tool returns an "Authentication Error" or your token has expired:
Re-run the login command from the project directory:
uv run loginRestart your MCP client (Claude Desktop or Claude Code).
Security Notes
The token lives in
.envasBOOSTCAMP_AUTH_TOKEN;.envis excluded by.gitignore.Never commit your
.env.
📄 License
Released under the MIT License.
🙏 Credits
Original MCP server:
Alex-Keyes/boostcamp-mcpby Alex Keyes.Underlying API library:
Alex-Keyes/boostcamp-apiby Alex Keyes, maintained here asdcaslin/boostcamp-api.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dcaslin/boostcamp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server