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

@fast-kit/spec-kit

v0.1.0

Published

SpecKit MCP Server - Specification Management System

Readme

SpecKit MCP Server

Specification Management System - MCP Server Implementation

🚀 Quick Start

Installation

# From the monorepo root
pnpm install

# Build SpecKit
cd implementations/mcp-servers/spec-kit
pnpm build

Usage with Claude Code

Add to your Claude Code config (~/.config/claude/config.json):

{
  "mcpServers": {
    "spec-kit": {
      "command": "node",
      "args": ["/path/to/fast-kit/implementations/mcp-servers/spec-kit/dist/index.js"]
    }
  }
}

🎯 Features

  • ✅ Create specs from templates (PRD, RFC, ADR, User Story, API Spec)
  • ✅ Validate specs against schemas
  • ✅ List and search specifications
  • ✅ Export to Claude Code prompt format
  • ✅ YAML/JSON storage
  • ⏳ Notion integration (coming soon)
  • ⏳ Markdown export (coming soon)

📦 Available Tools

create_spec

Create a new specification from a template.

Parameters:

  • template (required): prd | rfc | adr | user_story | api_spec
  • title (required): Title of the specification
  • data (optional): Initial spec data
  • source (optional): manual | notion | markdown

Example:

{
  "template": "prd",
  "title": "User Authentication System",
  "data": {
    "overview": {
      "problem": "Users need secure login",
      "solution": "OAuth2 + JWT authentication",
      "target_users": ["End users", "Admins"],
      "success_metrics": ["Login success rate > 99%"]
    }
  }
}

get_spec

Get specification details.

Parameters:

  • spec_id (required): Specification ID
  • format (optional): yaml | json | markdown

list_specs

List all specifications with filtering.

Parameters:

  • template (optional): Filter by template type
  • status (optional): Filter by status
  • tags (optional): Filter by tags
  • search (optional): Search query
  • limit (optional): Maximum results (default: 50)

validate_spec

Validate a specification.

Parameters:

  • spec_id (required): Specification ID
  • strict (optional): Use strict validation

export_to_prompt

Export specification to Claude Code prompt format.

Parameters:

  • spec_id (required): Specification ID
  • include_context (optional): Include additional context
  • prompt_template (optional): Custom template

list_templates

List available specification templates.

📁 Data Storage

Specifications are stored at ~/.fast-kit/specs/:

~/.fast-kit/specs/
├── prd/
│   └── {spec-id}.yaml
├── rfc/
│   └── {spec-id}.yaml
├── adr/
│   └── {spec-id}.yaml
├── user_stories/
│   └── {spec-id}.yaml
└── api_specs/
    └── {spec-id}.yaml

🧪 Development

Run in Development Mode

pnpm dev

Run Tests

pnpm test

Build

pnpm build

📖 Examples

Create a PRD

# Using Claude Code
> Create a PRD spec for user authentication with OAuth2 and JWT

Claude Code will call:

{
  "tool": "create_spec",
  "arguments": {
    "template": "prd",
    "title": "User Authentication System",
    "data": {
      "overview": {
        "problem": "Users need secure authentication",
        "solution": "Implement OAuth2 + JWT",
        "target_users": ["End users"],
        "success_metrics": ["99% uptime", "< 500ms login time"]
      }
    }
  }
}

Export to Prompt

# Get the spec as a Claude-ready prompt
> Export spec abc123 to a prompt

Output:

# Task: User Authentication System

## Overview
**Problem**: Users need secure authentication
**Solution**: Implement OAuth2 + JWT

## Functional Requirements
1. **OAuth2 Login** (must)
   Support Google and GitHub providers
   Acceptance Criteria:
   - User can login with Google
   - User can login with GitHub
   - OAuth tokens are securely stored

...

🔧 Configuration

Coming soon: support for custom config at ~/.fast-kit/config.yaml

📝 License

MIT