- Home
- MCP servers
- Spec-Driven Development
Spec-Driven Development
- typescript
424
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"formulahendry-mcp-server-spec-driven-development": {
"command": "npx",
"args": [
"-y",
"mcp-server-spec-driven-development@latest"
]
}
}
}You use this Spec-Driven Development MCP Server to guide your work from requirements through design to implementation. It provides structured prompts that help you generate requirements in EARS format, create design documents from those requirements, and emit implementation code from the design, creating a clear, traceable development workflow.
How to use
You interact with the server through an MCP-compatible client. Start by creating or loading your requirements. Use the generate-requirements prompt to produce an EARS-formatted requirements document. Then generate a design document from those requirements with generate-design-from-requirements. Finally, generate the implementation code using generate-code-from-design. This sequence establishes a clear, auditable path from what you want to build to how you will build it.
How to install
Prerequisites: Node.js 20 or newer.
{
"mcpServers": {
"spec_driven": {
"command": "npx",
"args": ["-y", "mcp-server-spec-driven-development@latest"]
}
}
}
Additional notes
The server exposes three prompts you can use in order: generate-requirements, generate-design-from-requirements, and generate-code-from-design. Use them to create a complete, end-to-end spec-driven workflow.
Available tools
generate-requirements
Generates a requirements document in EARS format from high-level inputs.
generate-design-from-requirements
Creates a design document based on the generated requirements.
generate-code-from-design
Produces implementation code from the design document.