DevPlan

DevPlan

mmorris35

Creates detailed development plans from project ideas by interviewing users and generating structured markdown files with phases, tasks, and subtasks. Tracks progress and validates plans for consistency.

Transform project ideas into structured development plans with phases, tasks, and subtasks

3226 views2Remote

What it does

  • Interview users about project requirements
  • Generate structured development plans with tasks and subtasks
  • Validate development plans for completeness
  • Track progress by marking subtasks complete
  • Parse existing project briefs into structured data
  • Create project templates for CLI, web apps, APIs, and libraries

Best for

Developers starting new projects who need structured planningTeams wanting consistent development workflowsSolo developers managing complex multi-phase projects
Remote — zero setupPlans executable by Claude HaikuBuilt-in validation and progress tracking

About DevPlan

DevPlan is a community-built MCP server published by mmorris35 that provides AI assistants with tools and capabilities via the Model Context Protocol. DevPlan turns project ideas into clear development plans with phases, tasks, and subtasks—organize, schedule, and track It is categorized under developer tools, productivity. This server exposes 20 tools that AI clients can invoke during conversations and coding sessions.

How to install

You can install DevPlan in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.

License

DevPlan is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

Tools (20)

devplan_start

START HERE: Initialize a new project using the DevPlan methodology. This tool provides comprehensive inline instructions for building a development plan that Claude Code can execute step-by-step.

devplan_interview_questions

Get interview questions to ask the user about their project. Ask these ONE AT A TIME, waiting for responses.

devplan_create_brief

Create a PROJECT_BRIEF.md after interviewing the user. This captures their requirements in a structured format.

devplan_parse_brief

Parse an existing PROJECT_BRIEF.md file to extract structured data. Use this if a brief already exists.

devplan_generate_plan

Generate a DEVELOPMENT_PLAN.md scaffold. Use this as a starting point, then enhance it to match the example at https://raw.githubusercontent.com/mmorris35/ClaudeCode-DevPlanBuilder/main/examples/hello-cli/DEVELOPMENT_PLAN.md

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, Haiku-executable development plans with built-in validation, lessons learned, and issue remediation workflows.

Key Features

FeatureDescription
Haiku-Executable PlansPlans so detailed that Claude Haiku 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

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"
    }
  }
}

Update Existing Installation

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

Quick Start

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 Haiku-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[Haiku Executes]
        G --> H[Sonnet 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 a starting template
  4. Enhance with Code → Claude (Opus/Sonnet) fills in complete, copy-pasteable code
  5. Validatedevplan_validate_plan checks the plan is Haiku-executable
  6. Execute → Haiku implements each subtask mechanically
  7. Verify → Sonnet tries to break the implementation
  8. Learn → Issues become lessons for future projects

Validation Ensures Quality

The validation step checks that plans are truly Haiku-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
# 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
# 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

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

Fix a GitHub Issue

# 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

"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:

"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:

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

Generate generic agent files:

"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:

"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:

"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 Haiku-powered executor agent with Task tool integration
devplan_generate_verifierGenerate Sonnet-powered verifier agent with Task tool integration

Validation & Execution

ToolPurpose
devplan_validate_planValidate plan structure and Haiku-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 DevP


README truncated. View full README on GitHub.

Alternatives

Related Skills

Browse all skills
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

18
ai-sdk

Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".

6
ai-assisted-development

Leveraging AI coding assistants and tools to boost development productivity, while maintaining oversight to ensure quality results.

4
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

4
teams-channel-post-writer

Creates educational Teams channel posts for internal knowledge sharing about Claude Code features, tools, and best practices. Applies when writing posts, announcements, or documentation to teach colleagues effective Claude Code usage, announce new features, share productivity tips, or document lessons learned. Provides templates, writing guidelines, and structured approaches emphasizing concrete examples, underlying principles, and connections to best practices like context engineering. Activates for content involving Teams posts, channel announcements, feature documentation, or tip sharing.

4
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

4