Transform project ideas into paint-by-numbers development plans with phases, tasks, and subtasks.
{
"mcpServers": {
"io-github-mmorris35-devplan-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Transform project ideas into paint-by-numbers development plans with phases, tasks, and subtasks.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 14 days ago. 3 stars.
Will it work with my client?
Transport: . Compatibility not confirmed.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Manage Supabase projects — databases, auth, storage, and edge functions
Query and manage PostgreSQL databases directly from AI assistants
An official Qdrant Model Context Protocol (MCP) server implementation
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP Security Weekly
Get CVE alerts and security updates for io.github.mmorris35/devplan-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Transform ideas into executable development plans — an MCP server that brings the ClaudeCode-DevPlanBuilder methodology to Claude Code.
The Problem: AI coding assistants often lose context, skip steps, or produce inconsistent code across sessions.
The Solution: DevPlan creates detailed, agent-executable development plans with built-in validation, lessons learned, and inline git workflows.
| Feature | Description | |---------|-------------| | Agent-Executable Plans | Plans so detailed that any LLM coding agent can execute them mechanically | | Built-in Validation | Validates plans are complete before execution begins | | Real-Time Progress Tracking | Integrates with Claude Code's Task tools for live visibility | | Lessons Learned | Captures issues from verification and injects them into future plans | | Issue Remediation | Converts GitHub issues directly into remediation tasks | | Executor & Verifier Agents | Auto-generates specialized agents with task tracking built-in |
claude mcp add devplan --transport sse https://mcp.devplanmcp.store/sse --scope user
Or add to ~/.claude.json under the mcpServers key:
{
"mcpServers": {
"devplan": {
"type": "sse",
"url": "https://mcp.devplanmcp.store/sse"
}
}
}
If you already have DevPlan installed, remove from both scopes and re-add:
claude mcp remove devplan --scope project; claude mcp remove devplan --scope user; claude mcp add devplan --transport sse https://mcp.devplanmcp.store/sse --scope user
You: "Use devplan_start to help me build a CLI tool for managing dotfiles"
That's it. DevPlan will guide Claude through the entire process.
DevPlan uses a scaffold → enhance → validate workflow that ensures every plan is agent-executable before implementation begins.
flowchart LR
subgraph Planning["📋 Planning"]
A[Interview] --> B[Brief]
B --> C[Generate Scaffold]
end
subgraph Enhancement["✨ Enhancement"]
C --> D[Enhance with Code]
D --> E{Validate}
E -->|Fail| D
E -->|Pass| F[Ready]
end
subgraph Execution["⚡ Execution"]
F --> G[Agent Executes]
G --> H[Agent Verifies]
end
subgraph Learning["🧠 Learning"]
H -->|issues| I[Capture Lessons]
I -->|improve| C
end
style E fill:#fff3e0,stroke:#f57c00
style F fill:#c8e6c9,stroke:#2e7d32
style I fill:#e3f2fd,stroke:#1565c0
devplan_generate_plan creates foundation phases + a feature listdevplan_validate_plan checks the plan is agent-executableThe validation step checks that plans are truly executable: