.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/formulahendry/mcp-server-spec-driven-development
home/mcp-servers/formulahendry/mcp-server-spec-driven-development
formulahendry avatar

mcp-server-spec-driven-development

byformulahendry· 3 MCP servers

Installs

407

Stars

435

Forks

39

Category

AI Agents & MCP

View on GitHub

TL;DR

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.

How to install mcp-server-spec-driven-development?

formulahendry/mcp-server-spec-driven-development
$git clone https://github.com/formulahendry/mcp-server-spec-driven-development

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-server-spec-driven-development by running `git clone https://github.com/formulahendry/mcp-server-spec-driven-development`, then use it for the current task and follow its documentation at https://github.com/formulahendry/mcp-server-spec-driven-development.

Files · 1

View on GitHub
README.md
1# Spec-Driven Development MCP Server
2 
3[![NPM Downloads](https://img.shields.io/npm/d18m/mcp-server-spec-driven-development)
4](https://www.npmjs.com/package/mcp-server-spec-driven-development) [![Install in VS Code](https://img.shields.io/badge/Install_MCP_Server_(npx)-VS_Code-0098FF)](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522spec-driven%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522mcp-server-spec-driven-development%2540latest%2522%255D%257D)
5 
6Model 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.
7 
8<a href="https://glama.ai/mcp/servers/@formulahendry/mcp-server-spec-driven-development">
9 <img width="380" height="200" src="https://glama.ai/mcp/servers/@formulahendry/mcp-server-spec-driven-development/badge" alt="Spec-Driven Development Server MCP server" />
10</a>
11 
12## 🎯 Purpose
13 
14This MCP server enables developers to follow a structured spec-driven development approach by providing prompts that guide you through:
15 
161. **Requirements Generation** - Create detailed requirements documents using the EARS (Easy Approach to Requirements Syntax) format
172. **Design Generation** - Generate design documents based on requirements
183. **Code Generation** - Generate implementation code based on design documents
19 
20## ✨ Features
21 
22- **Structured Workflow**: Follows a clear progression from **requirements** → **design** → **code**
23- **EARS Format Support**: Uses industry-standard EARS format for requirements documentation
24- **MCP Protocol**: Integrates seamlessly with MCP-compatible tools and environments
25 
26## 🚀 Quick Start
27 
28### Prerequisites
29 
30- Node.js 20+
31 
32### Installation
33 
34#### VS Code
35 
36Install the MCP server in VS Code using below buttons:
37 
38[![Install in VS Code](https://img.shields.io/badge/Install_MCP_Server_(npx)-VS_Code-0098FF)](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522spec-driven%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522mcp-server-spec-driven-development%2540latest%2522%255D%257D) [![Install in VS Code Insiders](https://img.shields.io/badge/Install_MCP_Server_(npx)-VS_Code_Insiders-24bfa5)](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522spec-driven%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522mcp-server-spec-driven-development%2540latest%2522%255D%257D)
39 
40Alternatively, you can add configuration in `mcp.json`:
41 
42```json
43{
44 "servers": {
45 "spec-driven": {
46 "command": "npx",
47 "args": [
48 "-y",
49 "mcp-server-spec-driven-development@latest"
50 ]
51 }
52 }
53}
54```
55 
56#### Cursor, Claude Code
57 
58Install the MCP server in Cursor using below button:
59 
60[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=spec-driven&config=JTdCJTIyY29tbWFuZCUyMiUzQSUyMm5weCUyMC15JTIwbWNwLXNlcnZlci1zcGVjLWRyaXZlbi1kZXZlbG9wbWVudCU0MGxhdGVzdCUyMiU3RA%3D%3D)
61 
62Alternatively, you can add configuration in `mcp.json`:
63 
64```json
65{
66 "mcpServers": {
67 "spec-driven": {
68 "command": "npx",
69 "args": [
70 "-y",
71 "mcp-server-spec-driven-development@latest"
72 ]
73 }
74 }
75}
76```
77 
78## 📋 Available Prompts
79 
80### 1. Generate Requirements Document
81- **Name**: `generate-requirements`
82- **Description**: Generate requirements.md using EARS format
83- **Input**: High-level requirements of the application. Example: 'A Vue.js todo application with task creation, completion tracking, and local storage persistence'
84- **Output**: Structured requirements document in `specs/requirements.md`
85 
86### 2. Generate Design from Requirements
87- **Name**: `g

Preview

formulahendry/mcp-server-spec-driven-developmentformulahendry/mcp-server-spec-driven-development

# Spec-Driven Development MCP Server

[![NPM Downloads](https://img.shields.io/npm/d18m/mcp-server-spec-driven-development)

](https://www.npmjs.com/package/mcp-server-spec-driven-development) [![Install in VS Code](https://img.shields.io/badge/Install_MCP_Server_(npx)-VS_Code-0098FF)

Model Context Protocol (MCP) server that facilitates spec-driven development workflows by providing structured prompts for generating requirements, design docum

Repoformulahendry/mcp-server-spec-driven-development
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedSep 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcpmcp-server

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k