@contextplanner/mcp-server
v0.1.2
Published
MCP server for ContextPlanner - connect Claude Code to your projects
Readme
@contextplanner/mcp-server
MCP (Model Context Protocol) server for ContextPlanner — connect Claude Code and other AI tools to your projects, tickets, and ideas.
Setup
1. Generate an API Key
Log into ContextPlanner → Settings → API Keys → Generate New Key
2. Configure Claude Code
Add to your .mcp.json (project root) or ~/.claude/.mcp.json (global):
{
"mcpServers": {
"contextplanner": {
"command": "npx",
"args": ["@contextplanner/mcp-server"],
"env": {
"CONTEXTPLANNER_API_KEY": "cpk_your_key_here",
"CONTEXTPLANNER_API_URL": "https://contextplanner.com"
}
}
}
}3. Restart Claude Code
The ContextPlanner tools will be available immediately.
Available Tools
| Tool | Description |
|------|-------------|
| list_projects | List all projects |
| create_project | Create a new project |
| update_project | Update project name, description, status, or priority |
| get_project | Get project details |
| list_tickets | List tickets, optionally filtered by project |
| create_ticket | Create a new ticket in a project |
| update_ticket | Update ticket status, title, description, or priority |
| list_ideas | List all ideas |
| create_idea | Create a new idea |
| update_idea | Update idea status (complete, archive, backburner), title, notes, or tags |
How It Works
The MCP server runs locally on your machine and communicates with the ContextPlanner API using your API key. Claude Code launches it as a subprocess and uses the tools to manage your projects while you work.
Activities are logged automatically — when Claude creates a ticket or updates a status, it shows up in your ContextPlanner activity feed.
Requirements
- Node.js 18+
- A ContextPlanner account with a paid subscription (for API key access)
