mcp-server-spec-driven-development
Spec-Driven Development MCP Server
pinned to #8a0532aupdated last month
Ask your AI client: “install mcps/mcp-server-spec-driven-development”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install mcps/mcp-server-spec-driven-developmentmetahub onboarded this repo on the author's behalf.
If you own github.com/formulahendry/mcp-server-spec-driven-development on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
430
Last commit
last month
Latest release
published
- #mcp
- #mcp-server
- #spec-driven-development
- #vibe-coding
What this server exposes
Surfaces parsed from this server's source at publish time.
Prompts (3)
generate-requirementsGenerate requirements.md using EARS formatgenerate-design-from-requirementsGenerate design.md from requirements.mdgenerate-code-from-designGenerate code from design.md
Launches: mcp-server-spec-driven-development
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.8a0532a· last month
Documentation
41Description qualitywarn
Only 4 words · 34 chars — more detail helps discovery
Tell consumers what this artifact does in a full sentence.
README is present and substantial
5,433 chars · 6 sections · 2 code blocks
Tags / topics declared
4 total — mcp, mcp-server, spec-driven-development, vibe-coding
README has usage / example sections
found: Installation
Homepage / docs URL declared
https://www.npmjs.com/package/mcp-server-spec-driven-development
Release history
1- releasecurrent8a0532awarnlast month
Contents
Spec-Driven Development MCP Server
](https://www.npmjs.com/package/mcp-server-spec-driven-development)
Model Context Protocol (MCP) server that facilitates spec-driven development workflows by providing structured prompts for generating requirements, design documents, and code following a systematic approach.
🎯 Purpose
This MCP server enables developers to follow a structured spec-driven development approach by providing prompts that guide you through:
- Requirements Generation - Create detailed requirements documents using the EARS (Easy Approach to Requirements Syntax) format
- Design Generation - Generate design documents based on requirements
- Code Generation - Generate implementation code based on design documents
✨ Features
- Structured Workflow: Follows a clear progression from requirements → design → code
- EARS Format Support: Uses industry-standard EARS format for requirements documentation
- MCP Protocol: Integrates seamlessly with MCP-compatible tools and environments
🚀 Quick Start
Prerequisites
- Node.js 20+
Installation
VS Code
Install the MCP server in VS Code using below buttons:
Alternatively, you can add configuration in mcp.json:
{
"servers": {
"spec-driven": {
"command": "npx",
"args": [
"-y",
"mcp-server-spec-driven-development@latest"
]
}
}
}
Cursor, Claude Code
Install the MCP server in Cursor using below button:
Alternatively, you can add configuration in mcp.json:
{
"mcpServers": {
"spec-driven": {
"command": "npx",
"args": [
"-y",
"mcp-server-spec-driven-development@latest"
]
}
}
}
📋 Available Prompts
1. Generate Requirements Document
- Name:
generate-requirements - Description: Generate requirements.md using EARS format
- Input: High-level requirements of the application. Example: 'A Vue.js todo application with task creation, completion tracking, and local storage persistence'
- Output: Structured requirements document in
specs/requirements.md
2. Generate Design from Requirements
- Name:
generate-design-from-requirements - Description: Generate design.md from requirements.md
- Input: Reads from
specs/requirements.md - Output: Design document in
specs/design.md
3. Generate Code from Design
- Name:
generate-code-from-design - Description: Generate code from design.md
- Input: Reads from
specs/design.md - Output: Implementation code in the root folder
📖 Workflow Example
- Start with Requirements: Use the
generate-requirementsprompt with your initial requirements text - Create Design: Use
generate-design-from-requirementsto create a design document based on your requirements - Generate Code: Use
generate-code-from-designto generate implementation code from your design
This creates a traceable path from requirements through design to implementation, ensuring consistency and completeness in your development process.
🤔 Why Spec-Driven Development?
Moving beyond Vibe Coding to a structured, specification-driven approach brings clarity, consistency, and maintainability to your development workflow. Instead of coding by intuition alone, Spec-Driven Development provides a systematic foundation that scales with your project's complexity.
Learn more about the benefits: Goodbye, Vibe Coding! Hello, Spec-Driven Development MCP Server!
Reviews
No reviews yet. Be the first.
Related
@remote-mcp/example
@remote-mcp/example MCP server
excel-mcp-server
Excel MCP Server for manipulating Excel files
Android-MCP
Lightweight MCP Server for Android Operating System
mh install mcps/mcp-server-spec-driven-development