npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/spec-coding-mcp

v1.0.1

Published

MCP server for AI-powered IDE to follow spec-driven development

Downloads

16

Readme

Spec-driven Development MCP Server

smithery badge

An MCP server that brings AI-guided spec-driven development workflow to any AI-powered IDEs beyonnd Kiro. Transform your development process with structured, step-by-step guidance from idea to implementation.

What is Spec-driven Development?

Spec-driven development is a methodology that emphasizes creating detailed specifications before writing code. This approach helps ensure clear requirements, better design decisions, and more maintainable code. Our MCP server guides you through this process with AI assistance.

Features

  • Complete Development Workflow: From goal collection to task execution
  • AI-Powered Guidance: Step-by-step instructions for each development phase
  • Structured Documentation: Generates organized specs in EARS format
  • Template-Based: Uses proven templates for requirements, design, and tasks

Installation

Installing via Smithery

To install spec-coding-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @kevinlin/spec-coding-mcp --client claude

Using npx (Recommended)

# Always get the latest version
npx spec-coding-mcp@latest

# Or simply (will also get latest)
npx spec-coding-mcp

Using npm

npm install -g spec-coding-mcp
spec-coding-mcp

Usage

With Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "spec-coding-mcp": {
      "command": "npx",
      "args": ["spec-coding-mcp@latest"],
      "env": {},
      "disabled": false
    }
  }
}

Available Tools

  1. spec_coding_workflow_start - Start the development workflow
  2. spec_coding_goal_confirmed - Confirm feature goals
  3. spec_coding_requirements_start - Begin requirements gathering
  4. spec_coding_requirements_confirmed - Confirm requirements completion
  5. spec_coding_design_start - Start design documentation
  6. spec_coding_design_confirmed - Confirm design completion
  7. spec_coding_tasks_start - Begin task planning
  8. spec_coding_tasks_confirmed - Confirm task planning completion
  9. spec_coding_execute_start - Start task execution

Workflow Stages & Example

The spec-driven development process follows five distinct stages. Here's how it works with a real example - building a user authentication feature:

1. Goal Collection - Define What You Want to Build

Purpose: Establish clear, specific objectives for your feature.

Example Interaction:

User: I want to build a user authentication feature
Assistant: Let me start the spec-driven development workflow for you.
[calls spec_coding_workflow_start]

Let's define your feature goals:

1. What specific authentication methods do you want to support?
2. Do you need social login (Google, GitHub, etc.)?  
3. What user roles and permissions are required?

User: I need email/password login with JWT tokens, plus Google OAuth, and basic user/admin roles.

Assistant: Perfect! Let me confirm:
- Feature: User authentication system  
- Methods: Email/password + Google OAuth
- Tokens: JWT-based
- Roles: User and Admin
- Feature name: "user-authentication"

Is this correct?
User: Yes, that's exactly what I need.
[calls spec_coding_goal_confirmed with feature_name="user-authentication"]

2. Requirements Gathering - Create Detailed EARS-format Requirements

Purpose: Transform your goals into specific, testable requirements using the EARS (Easy Approach to Requirements Syntax) format.

Example Interaction:

Assistant: Great! Now let's gather detailed requirements.
[calls spec_coding_requirements_start]

[Assistant generates detailed EARS-format requirements in docs/specs/user-authentication/requirements.md]
- WHEN a user provides valid email/password THEN the system SHALL authenticate them
- GIVEN a user wants Google OAuth WHEN they click "Sign in with Google" THEN the system SHALL redirect to Google
- WHERE user roles are needed IF user is admin THEN they SHALL access admin features

User: The requirements look comprehensive. Approved!
[calls spec_coding_requirements_confirmed]

3. Design Documentation - Technical Architecture and Design

Purpose: Create detailed technical specifications including architecture, component design, data models, and API specifications.

Example Interaction:

Assistant: Now let's create the technical design.
[calls spec_coding_design_start]

[Assistant creates detailed design document including:]
- Database schema for users, sessions, oauth_tokens
- Authentication middleware architecture  
- JWT token structure and validation flow
- Google OAuth integration endpoints
- Role-based access control implementation

User: Design looks good, proceed!
[calls spec_coding_design_confirmed]

4. Task Planning - Break Down into Executable Tasks

Purpose: Decompose the feature into specific, prioritized development tasks with clear dependencies.

Example Interaction:

Assistant: Let's break this down into executable tasks.
[calls spec_coding_tasks_start]

[Assistant creates numbered task list:]
1. Set up database models (User, Session, OAuthToken)
2. Implement JWT token service
3. Create email/password authentication endpoints  
4. Integrate Google OAuth flow
5. Build role-based middleware
6. Add frontend login/register forms
7. Write integration tests

User: Task breakdown is perfect!
[calls spec_coding_tasks_confirmed]

5. Task Execution - Implement the Code

Purpose: Execute the planned tasks systematically, implementing the feature according to specifications.

Example Interaction:

Assistant: Time to implement! Let's start coding.
[calls spec_coding_execute_start]

[Assistant implements each task step by step:]
- Creates User model with email, password_hash, role fields
- Builds JWT service with sign/verify methods
- Implements /auth/login and /auth/register endpoints
- Integrates Google OAuth with Passport.js
- Creates role-checking middleware
- Builds React login/register components
- Writes comprehensive test suite

Generated Project Structure

Throughout the workflow, the following documentation structure is created:

docs/specs/{feature_name}/
├── requirements.md    # EARS-format requirements
├── design.md         # Technical architecture  
└── tasks.md          # Implementation checklist

Development

Prerequisites

Make sure you have Node.js 18+ installed.

Setup

# Install dependencies with pnpm (recommended)
pnpm install

# Or with npm
npm install

Running the Project

# Development mode with pnpm
pnpm dev

# Or with npm
npm run dev

# Build with pnpm
pnpm build

# Or with npm
npm run build

# Start built version with pnpm
pnpm start

# Or with npm
npm start

# Test with pnpm (when available)
pnpm test

# Or with npm
npm test

Publishing

To publish the package to npm:

# Build the project
pnpm build

# Publish to npm (will automatically run prepublishOnly script)
npm publish

Contributing & License

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

Attribution

This project was inspired by and builds upon concepts from vibedevtools by @yinwm, a collection of development efficiency tools.