MCP server exposing Rocketlane CSM data — projects, tasks, team workload, and weekly reviews
Project description
rocketlane-mcp
An MCP server that exposes your Rocketlane CSM data to Claude and other MCP-compatible AI clients. Ask questions about project health, team workload, tasks, and generate weekly reviews — without leaving your AI assistant.
Tools
| Tool | Description |
|---|---|
get_projects_snapshot |
All active projects with status, CSM owner, and progress % |
get_csm_workload |
Per-CSM active project count and overdue task count |
get_project_updates |
Recent project updates (scope by project or all, configurable lookback window) |
get_all_tasks |
All tasks across active projects — filter by project or assignee name |
get_team_members |
All active team members with user ID and email |
parse_tasks_from_notes |
Parse meeting notes into structured task drafts for review |
create_tasks |
Create confirmed tasks in Rocketlane (call after parse_tasks_from_notes) |
create_project |
Create a new Rocketlane project |
push_weekly_review_to_lark |
Generate a weekly CS review doc and push it to Lark Docs (optional — requires Lark credentials) |
Quickstart
Claude Desktop (recommended)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"rocketlane-csm": {
"command": "uvx",
"args": ["rocketlane-mcp"],
"env": {
"ROCKETLANE_API_KEY": "your_rocketlane_api_key_here",
"ROCKETLANE_BASE_URL": "https://api.rocketlane.com/api/1.0"
}
}
}
}
Restart Claude Desktop. No separate install step needed — uvx fetches and runs the package automatically.
Install via pip
pip install rocketlane-mcp
Then run:
ROCKETLANE_API_KEY=your_key rocketlane-mcp
Or create a .env file (see .env.example) and run rocketlane-mcp directly.
Configuration
| Variable | Required | Description |
|---|---|---|
ROCKETLANE_API_KEY |
Yes | Your Rocketlane API key (Settings → Integrations → API) |
ROCKETLANE_BASE_URL |
Yes | https://api.rocketlane.com/api/1.0 |
LARK_APP_ID |
No | Lark app ID — only needed for push_weekly_review_to_lark |
LARK_APP_SECRET |
No | Lark app secret |
LARK_FOLDER_TOKEN |
No | Lark folder token where review docs will be created |
Example prompts
- "Show me all active projects and their health status."
- "Which CSM has the most overdue tasks this week?"
- "What updates have been posted in the last 3 days?"
- "Parse these meeting notes and create tasks for the team: ..."
- "Push this week's CS review to Lark."
Development
git clone https://github.com/minhlecsm/rocketlane-mcp
cd rocketlane-mcp
pip install -e '.[dev]'
cp .env.example .env # fill in your credentials
pytest
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rocketlane_mcp-0.2.0.tar.gz.
File metadata
- Download URL: rocketlane_mcp-0.2.0.tar.gz
- Upload date:
- Size: 31.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2326a2f98ff8111babd8b199edf1adc00c04f666560eea63fe28f1e86fceba3
|
|
| MD5 |
9263505b7ce691470724e8f2828778d1
|
|
| BLAKE2b-256 |
d1a9817a8e6b071dd4229626c9120e70e029eadecadbe637c7917359cd176db8
|
File details
Details for the file rocketlane_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: rocketlane_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 44.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18c60cecef129f9ded455bfa97b8f5638223b7e9bb57a360750393652251274d
|
|
| MD5 |
9e5540dafe0588dcb48837520b611ef7
|
|
| BLAKE2b-256 |
1c33340d648b657233132f7272835b81465c33b5474393b4d5df101cd4e6b7c0
|