Spec Workflow MCP
An intelligent MCP server that helps development teams maintain high-quality project documentation by providing an AI-powered workflow for creating comprehensive specifications through requirements, design, and implementation documents.
README
Spec Workflow MCP
An intelligent MCP server for managing software project specifications through a structured workflow of requirements, design, and implementation documents.
What is Spec Workflow MCP?
Spec Workflow MCP helps development teams maintain high-quality project documentation by providing an AI-powered workflow that guides you through creating comprehensive specifications.
❌ Without Spec Workflow MCP
- Inconsistent documentation across projects
- Missing critical requirements details
- Unstructured design decisions
- Unclear implementation tasks
- Manual tracking of document completion
- AI jumps between tasks randomly without structure
- No connection between requirements and actual code implementation
✅ With Spec Workflow MCP
- Standardized document templates for requirements, design, and tasks
- AI-guided document generation based on best practices
- Automatic progress tracking and workflow management
- Smart validation of document completeness
- Seamless integration with Claude and other MCP-compatible tools
- AI follows task order systematically, completing one before moving to the next
- Requirements → Design → Tasks workflow ensures code aligns with business needs
Installation
Requirements
- Node.js ≥ v18.0.0
- npm or yarn
- Claude Desktop or any MCP-compatible client
Quick Start with npx
npx spec-workflow-mcp@latest
Install in Different MCP Clients
Claude Code (Recommended)
Use the Claude CLI to add the MCP server:
claude mcp add spec-workflow-mcp -s user -- npx -y spec-workflow-mcp@latest
Claude Desktop
Add to your Claude Desktop configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"spec-workflow": {
"command": "npx",
"args": ["-y", "spec-workflow-mcp@latest"]
}
}
}
Cursor
Add to your Cursor configuration (~/.cursor/config.json):
{
"mcpServers": {
"spec-workflow": {
"command": "npx",
"args": ["-y", "spec-workflow-mcp@latest"]
}
}
}
Windsurf (Codeium)
Add to your Windsurf configuration (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"spec-workflow": {
"command": "npx",
"args": ["-y", "spec-workflow-mcp@latest"],
"env": {},
"autoApprove": [],
"disabled": false,
"timeout": 60,
"transportType": "stdio"
}
}
}
VS Code (with MCP extension)
Add to your VS Code settings (settings.json):
{
"mcp.servers": {
"spec-workflow": {
"command": "npx",
"args": ["-y", "spec-workflow-mcp@latest"]
}
}
}
Zed
Add to your Zed configuration (~/.config/zed/settings.json):
{
"assistant": {
"version": "2",
"mcp": {
"servers": {
"spec-workflow": {
"command": "npx",
"args": ["-y", "spec-workflow-mcp@latest"]
}
}
}
}
}
Install from Source
git clone https://github.com/kingkongshot/specs-mcp.git
cd specs-mcp
npm install
npm run build
Then add to Claude Desktop configuration:
{
"mcpServers": {
"spec-workflow": {
"command": "node",
"args": ["/absolute/path/to/specs-mcp/dist/index.js"]
}
}
}
Usage
Once installed, the MCP server provides the following commands through Claude:
Initialize a New Feature
Initialize spec workflow for "user authentication feature"
This creates a structured requirements document with sections for:
- Feature overview
- User stories
- Functional requirements
- Non-functional requirements
- Technical constraints
Check Progress and Generate Next Document
Check spec workflow progress
The server analyzes your current documentation and:
- Shows completion status for each section
- Identifies missing or incomplete areas
- Automatically generates the next document in the workflow
Complete Tasks
Complete task #3 in the implementation plan
Mark specific tasks as completed and track overall progress.
Skip Stages
Skip the design stage and go to implementation
Flexibility to adapt the workflow to your project needs.
Workflow Stages
- Requirements Gathering → 2. System Design → 3. Implementation Planning
Each stage has:
- Structured templates
- Validation rules
- AI-powered content generation
- Progress tracking
Features
- 📝 Smart Templates: Pre-defined document structures following best practices
- 🤖 AI-Powered Generation: Intelligent content suggestions based on your project context
- ✅ Progress Tracking: Visual progress indicators and completion tracking
- 🔄 Flexible Workflow: Skip stages or adapt the process to your needs
- 📊 Quality Validation: Automatic checks for document completeness
- 🔗 MCP Integration: Works seamlessly with Claude and other MCP clients
- 🎯 Sequential Task Execution: AI completes tasks in order, maintaining focus and context
- 🔄 Requirements-Driven Development: From business needs to code implementation in structured steps
Example Workflow
-
Start with a feature idea:
"I need to build a user authentication system" -
Initialize the workflow:
Initialize spec workflow for "user authentication" -
Review and enhance the generated requirements
-
Check progress and generate design document:
Check workflow progress -
Continue through design and implementation stages
-
Track task completion:
Complete task #1: Set up authentication database schema
Development
Build from Source
npm install
npm run build
Run in Development Mode
npm run dev
Run Tests
npm test
Debug with MCP Inspector
npm run inspector
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License - see LICENSE file for details
Links
Built with ❤️ using the Model Context Protocol
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.