MCP Planning Server
Provides structured task planning and tracking capabilities with 40 tools for managing requirements, solutions, architectural decisions, and hierarchical implementation phases with progress tracking.
README
MCP Planning Server
A Model Context Protocol (MCP) server for Claude Code that provides structured task planning and tracking capabilities.
Features
- 40 planning tools organized into 8 categories
- File-based JSON storage with atomic writes
- Hierarchical phases with progress tracking
- Requirement traceability from definition to implementation
- Decision records (ADR-style) with supersede support
- Solution comparison with tradeoff analysis
Installation
npm install
npm run build
Configuration
Add to your Claude Code MCP settings:
{
"mcpServers": {
"planning": {
"command": "node",
"args": ["path/to/planner/dist/index.js"],
"env": {
"MCP_PLANNING_STORAGE_PATH": "./.mcp-plans"
}
}
}
}
Disabling Permission Prompts
By default, Claude Code asks for confirmation before each MCP tool use. To allow all planning tools without prompts, add to your settings:
{
"permissions": {
"allow": [
"mcp__planning"
]
}
}
Settings locations (in order of priority):
- Project-local:
.claude/settings.local.json— for this project only, not committed to git - Project-shared:
.claude/settings.json— shared with team via git - Global:
~/.claude/settings.json— applies to all your projects
Note: MCP permissions do NOT support wildcards. Use mcp__planning (not mcp__planning__*) to allow all tools from this server.
Usage
Creating a Plan
Simply describe your task to Claude Code. The assistant will automatically create a plan:
"I need to build a user authentication system with OAuth support"
Claude Code will:
- Create a new plan
- Add requirements based on your description
- Propose solutions with tradeoffs
- Break down implementation into phases
Tracking Progress
As you work, Claude Code updates the plan:
"I've finished implementing the login form"
The assistant will mark the corresponding phase as complete and suggest next actions.
Viewing Plan Status
Ask about your current progress:
"What's the status of my plan?" "What should I work on next?"
Tool Categories
| Category | Tools | Description |
|---|---|---|
| Plan Management | 7 | Create, list, get, update, archive plans |
| Requirements | 5 | Manage requirements with priorities and acceptance criteria |
| Solutions | 6 | Propose, compare, and select solutions |
| Decisions | 4 | Record architectural decisions (ADR) |
| Phases | 6 | Hierarchical implementation phases |
| Linking | 3 | Entity relationships with cycle detection |
| Query | 4 | Search, trace, validate, export |
| System | 1 | Health check |
Storage
Plans are stored as JSON files in the configured storage path:
.mcp-plans/
├── plans/
│ └── {plan-id}/
│ ├── manifest.json
│ ├── requirements.json
│ ├── solutions.json
│ ├── decisions.json
│ ├── phases.json
│ └── links.json
└── active-plans.json
Development
# Run tests
npm test
# Build
npm run build
# Type check
npx tsc --noEmit
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.