DevPlan MCP Server

平台与服务

by mmorris35

将项目想法转化为清晰可执行的开发计划,自动拆分为 phases、tasks 和 subtasks。

什么是 DevPlan MCP Server

将项目想法转化为清晰可执行的开发计划,自动拆分为 phases、tasks 和 subtasks。

README

DevPlan MCP Server

License: MIT MCP Cloudflare Workers 21 Tools

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.


NEW — Install as a Skill (No MCP Server Required)

DevPlan is now available as a standalone Claude Code skill — no MCP server, no network dependency, no SSE timeouts. The entire DevPlan methodology runs locally as a first-class plugin.

Install

Step 1 — Add this repo as a plugin marketplace:

bash
/plugin marketplace add mmorris35/devplan-mcp-server

Step 2 — Install the plugin at user scope (available across all projects):

bash
/plugin install devplan@mmorris35 --scope user

Step 3 — Reload plugins to activate:

bash
/reload-plugins

Usage

Invoke the skill directly:

code
/devplan

Or use specific sub-commands:

code
/devplan brief          — Create or parse a PROJECT_BRIEF.md
/devplan plan           — Generate a Haiku-executable DEVELOPMENT_PLAN.md
/devplan agents         — Generate executor (Haiku) and verifier (Sonnet) agents
/devplan claude-md      — Generate a project CLAUDE.md
/devplan validate       — Check plan structure and Haiku-executability
/devplan progress       — Show completion status
/devplan export mermaid — Generate a Mermaid flowchart of the plan
/devplan issue <number> — Convert a GitHub issue to a remediation task
/devplan implement      — Kickoff the build with executor + verifier agents

Or just describe what you need — Claude will invoke the skill automatically:

code
"Help me plan a CLI tool for managing dotfiles"
"Create a development plan for this project"
"Validate my development plan"

What's Included

code
skills/devplan/
├── SKILL.md                 — Core methodology, interview flow, dispatch
├── references/
│   ├── templates.md         — Brief/plan/CLAUDE.md templates (CLI, web app, API, library)
│   ├── validation.md        — Structure + Haiku-executability rules + battle-tested lessons
│   ├── agents.md            — Executor and verifier agent generation patterns
│   └── workflows.md         — Mermaid/ReactFlow export + progress tracking
├── scripts/
│   ├── validate-plan.sh     — Structural validation (standalone)
│   └── check-haiku.sh       — Haiku-executability checker (standalone)
└── examples/
    └── hello-cli-plan.md    — Gold standard reference plan

Skill vs MCP Server

Skill (NEW)MCP Server
NetworkNone requiredSSE connection to Cloudflare
ReliabilityAlways worksSubject to SSE timeouts
Lessons systemUse Nellie or your ownBuilt-in KV store
Install/plugin installclaude mcp add
Validation scriptsStandalone bashServer-side

Both options are fully supported. The skill is recommended for reliability; the MCP server adds the lessons learned system and usage analytics.


Key Features

FeatureDescription
Agent-Executable PlansPlans so detailed that any LLM coding agent can execute them mechanically
Built-in ValidationValidates plans are complete before execution begins
Real-Time Progress TrackingIntegrates with Claude Code's Task tools for live visibility
Lessons LearnedCaptures issues from verification and injects them into future plans
Issue RemediationConverts GitHub issues directly into remediation tasks
Executor & Verifier AgentsAuto-generates specialized agents with task tracking built-in

Install

bash
claude mcp add devplan --transport sse https://mcp.devplanmcp.store/sse --scope user

Or add to ~/.claude.json under the mcpServers key:

json
{
  "mcpServers": {
    "devplan": {
      "type": "sse",
      "url": "https://mcp.devplanmcp.store/sse"
    }
  }
}

Update Existing Installation

If you already have DevPlan installed, remove from both scopes and re-add:

bash
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

Quick Start

code
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.

The DevPlan Workflow

DevPlan uses a scaffold → enhance → validate workflow that ensures every plan is agent-executable before implementation begins.

mermaid
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

How It Works

  1. Interview → DevPlan asks questions to understand your project
  2. Brief → Creates a structured PROJECT_BRIEF.md with requirements
  3. Generate Scaffolddevplan_generate_plan creates foundation phases + a feature list
  4. Enhance with Code → Your AI agent structures feature phases and fills in complete, copy-pasteable code
  5. Validatedevplan_validate_plan checks the plan is agent-executable
  6. Execute → Executor agent implements each subtask with inline git commands
  7. Verify → Verifier agent tries to break the implementation
  8. Learn → Issues become lessons for future projects

Validation Ensures Quality

The validation step checks that plans are truly executable:

  • ✅ Complete code blocks (not pseudocode or placeholders)
  • ✅ All imports included in code blocks
  • ✅ No "add to existing" instructions
  • ✅ No cross-subtask references
  • ✅ Verification commands with expected outputs
code
# Example validation output
{
  "valid": true,
  "errors": [],
  "warnings": [],
  "stats": {
    "subtasks": 5,
    "codeBlocksChecked": 8,
    "issuesFound": 0
  }
}

Real-Time Progress with Task Tools

Generated executor and verifier agents integrate with Claude Code's Task tools for live progress visibility:

  • Executor agents create tasks for each subtask, showing real-time spinners as work progresses
  • Verifier agents create tasks for each verification phase (Smoke Tests, Feature Verification, Edge Cases, etc.)
  • Progress is visible without scrolling — you always know what Claude is working on
code
# Example: Executor tracks subtasks
TaskCreate({ subject: "1.2.3: Implement auth middleware", activeForm: "Implementing auth middleware" })
TaskUpdate({ taskId: "...", status: "in_progress" })
# ... work happens ...
TaskUpdate({ taskId: "...", status: "completed" })

Both Task tools (real-time visibility) and DEVELOPMENT_PLAN.md (durable record) are updated — giving you the best of both worlds.

Usage Examples

New Project

code
"Use devplan_start to help me build [your idea]"

Fix a GitHub Issue

bash
# Get issue JSON
gh issue view 123 --json number,title,body,labels,comments,url > issue.json

# Then tell Claude:
"Use devplan_issue_to_task with this issue to create a remediation plan"

Check Progress

code
"Use devplan_progress_summary to show me where we are"

Multi-Model Support

DevPlan generates plans and agent files for multiple AI coding tools and models. Use the target parameter to generate outputs for your preferred tool.

Supported Targets

TargetToolAgent FileBest For
claudeClaude CodeCLAUDE.mdClaude Code IDE (default)
cursorCursor IDE.cursorrulesCursor AI editor
aiderAider CLI.aider.conf.ymlTerminal-based AI pair programming
clineVS Code Cline.cline/instructions.mdVS Code extension
windsurfWindsurf IDE.windsurf/rules.mdCodium's AI IDE
genericAny ModelAGENTS.md + filesModel-agnostic markdown format

Using Targets

When generating plans or agent files, specify the target tool:

Generate plan for Cursor:

code
"Use devplan_generate_plan to create a plan, then I'll customize it for Cursor. Set target to 'cursor' for .cursorrules format"

Generate executor for Aider:

code
"Use devplan_generate_executor with target='aider' to create an Aider-compatible executor agent"

Generate generic agent files:

code
"Use devplan_generate_claude_md with target='generic' to create model-agnostic AGENTS.md files"

How Targets Work

Each target has a dedicated adapter that transforms the DevPlan methodology into the appropriate format:

  • Claude - Generates CLAUDE.md with executor/verifier agents in .claude/agents/
  • Cursor - Generates .cursorrules with all guidance in one file (Cursor doesn't support separate agents)
  • Aider - Generates .aider.conf.yml with architect mode instructions
  • Cline - Generates .cline/instructions.md with executor/verifier split
  • Windsurf - Generates .windsurf/rules.md with cascade-optimized format
  • Generic - Generates AGENTS.md, EXECUTOR.md, and VERIFIER.md for any tool

Examples

Start a new project for Cursor:

code
"Use devplan_start to help me build a CLI tool, then generate the plan with target='cursor' for Cursor IDE"

Add executor for specific target:

code
"I have a development plan. Use devplan_generate_executor with target='aider' to create the executor agent for Aider"

Compare adapter capabilities: See docs/ADAPTERS.md for a detailed comparison of each target's capabilities and limitations.

Tools

Planning

ToolPurpose
devplan_startMain entry point - guides Claude through the methodology
devplan_interview_questionsGet questions to gather project requirements
devplan_create_briefGenerate PROJECT_BRIEF.md
devplan_parse_briefParse existing brief into structured data
devplan_list_templatesList project templates (cli, web_app, api, library)

Generation

ToolPurpose
devplan_generate_planGenerate DEVELOPMENT_PLAN.md scaffold with validation instructions
devplan_generate_claude_mdGenerate CLAUDE.md scaffold
devplan_generate_executorGenerate executor agent with Task tool integration
devplan_generate_verifierGenerate verifier agent with Task tool integration

Validation & Execution

ToolPurpose
devplan_validate_planValidate plan structure and agent-executability
devplan_get_subtaskGet specific subtask details by ID
devplan_update_progressMark subtasks complete with notes
devplan_progress_summaryGet completion stats and next actions

Lessons Learned

Feedback loop that captures issues from verification and incorporates them into future plans.

ToolPurpose
devplan_add_lessonCapture a lesson from verifier findings
devplan_list_lessonsList accumulated lessons by severity
devplan_archive_lessonArchive old lessons without deleting them
devplan_delete_lessonRemove outdated or incorrect lessons
devplan_extract_lessons_from_reportAuto-extract lessons from verification reports

Issue Remediation

Convert GitHub issues into structured remediation tasks — perfect for bug fixes and post-release maintenance.

ToolPurpose
devplan_parse_issueAnalyze a GitHub issue to extract requirements
devplan_issue_to_taskGenerate remediation task with subtasks from an issue

Analytics

ToolPurpose
devplan_usage_statsView usage distribution across users

Why DevPlan?

Without DevPlanWith DevPlan
Context lost between sessionsPlans preserve full context
Inconsistent code qualityExecutor agents follow exact specifications
Same mistakes repeatedLessons learned system prevents recurrence
No verification stepVerifier agents actively try to break the code
Bugs found in productionIssues caught before release
Plans need interpretationValidated plans are copy-paste ready

Dashboard & Analytics

DevPlan includes a public dashboard for viewing aggregate usage statistics:

Dashboard URL: devplanmcp.store/dashboard

The dashboard shows:

  • Summary cards: Total sessions, total tool calls, countries reached
  • Line chart: Sessions and tool calls over the last 30 days
  • Country table: Top 10 countries by session count

Privacy

All analytics are privacy-preserving:

  • No IP storage: Only Cloudflare-derived country/region codes
  • No user identification: Sessions are anonymous
  • Auto-expiration: Daily stats expire after 90 days via KV TTL

Development

bash
npm install
npm run dev      # Local development
npm run deploy   # Deploy to Cloudflare Workers

Contributing

Contributions welcome! Please see the ClaudeCode-DevPlanBuilder repo for methodology details.

License

MIT


<p align="center"> <b>Built for Claude Code</b><br> <a href="https://modelcontextprotocol.io">Model Context Protocol</a> • <a href="https://workers.cloudflare.com/">Cloudflare Workers</a> • <a href="https://github.com/mmorris35/ClaudeCode-DevPlanBuilder">DevPlanBuilder Methodology</a> </p>

常见问题

DevPlan MCP Server 是什么?

将项目想法转化为清晰可执行的开发计划,自动拆分为 phases、tasks 和 subtasks。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描171.4k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描171.4k

接口测试套件

by alirezarezvani

Universal
热门

扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。

帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。

平台与服务
未扫描24.9k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
89.7k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
80.0k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
72.9k

评论