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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lsendel/spec-kit-mcp

v0.1.1

Published

MCP server for GitHub Spec-Kit - enables AI coding assistants to use spec-driven development

Readme

@speckit/mcp

MCP server for GitHub Spec-Kit - enables AI coding assistants to use spec-driven development

This is the NPM distribution of the spec-kit-mcp server, built with Rust for high performance.

Quick Start

Using with Claude Code

Add to your .mcp.json:

{
  "mcpServers": {
    "spec-kit": {
      "type": "stdio",
      "command": "npx",
      "args": ["@speckit/mcp@latest"],
      "env": {}
    }
  }
}

Using with Cursor

Add to your Cursor settings:

{
  "mcp": {
    "servers": {
      "spec-kit": {
        "command": "npx",
        "args": ["@speckit/mcp@latest"]
      }
    }
  }
}

Prerequisites

  • Node.js 18+: Required for npx
  • Spec-Kit CLI: Install with uv tool install specify-cli
  • Python 3.11+: Required by spec-kit

Installation

Via NPX (Recommended)

No installation needed! The binary is downloaded automatically on first use.

npx @speckit/mcp --help

Via NPM (Global)

npm install -g @speckit/mcp
spec-kit-mcp --help

Via NPM (Local)

npm install @speckit/mcp
npx spec-kit-mcp --help

Available Tools

  1. speckit_init - Initialize a new spec-kit project
  2. speckit_constitution - Create governing principles
  3. speckit_specify - Define requirements and user stories
  4. speckit_plan - Create technical implementation plan
  5. speckit_tasks - Generate actionable task list

Usage Example

User: Initialize a spec-kit project for my new feature

Claude: [Uses speckit_init tool]
✓ Project initialized

User: Create a constitution focusing on security and simplicity

Claude: [Uses speckit_constitution tool]
✓ Constitution created

User: Specify requirements for OAuth2 authentication

Claude: [Uses speckit_specify tool]
✓ Requirements specified

User: Create a technical plan

Claude: [Uses speckit_plan tool]
✓ Plan created

User: Generate tasks

Claude: [Uses speckit_tasks tool]
✓ 23 tasks generated

Platform Support

  • ✅ macOS (Intel)
  • ✅ macOS (Apple Silicon)
  • ✅ Linux (x86_64)
  • ⏳ Windows (coming soon)

Troubleshooting

Binary Download Fails

If automatic download fails, you can build from source:

# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Install spec-kit-mcp
cargo install spec-kit-mcp

# Use the cargo-installed version in .mcp.json
{
  "command": "spec-kit-mcp",
  "args": []
}

Spec-Kit CLI Not Found

# Install spec-kit CLI
uv tool install specify-cli

# Or with pip
pip install specify-cli

Permission Denied (macOS/Linux)

chmod +x $(which spec-kit-mcp)

Documentation

  • Full Documentation: https://github.com/yourusername/spec-kit-mcp
  • Spec-Kit: https://github.com/github/spec-kit
  • MCP Protocol: https://modelcontextprotocol.io/

Performance

  • Cold start: <500ms
  • Tool invocation: <200ms
  • Memory usage: <50MB

License

Dual-licensed under MIT or Apache-2.0, at your option.

Links

  • GitHub: https://github.com/yourusername/spec-kit-mcp
  • Issues: https://github.com/yourusername/spec-kit-mcp/issues
  • Rust Crate: https://crates.io/crates/spec-kit-mcp