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

kspec-mcp-server

v1.1.0

Published

MCP Server for Spec-as-a-Service — enables AI agents to use software development specs without exposing markdown files

Readme

kspec-mcp-server

Spec-as-a-Service MCP Server — Enables AI agents to use software development specs without exposing markdown files.

Quick Start

Add to your ~/.claude.json:

{
  "mcpServers": {
    "kspec": {
      "command": "npx",
      "args": ["-y", "kspec-mcp-server@latest"]
    }
  }
}

Restart Claude Code. Done.

What It Does

This MCP Server exposes templates, skills and workflows as structured JSON tools, resources and prompts — never as raw markdown documents.

Principles

  • No Markdown Exposed: All specs are stored as structured JSON
  • Strict Validation: Zod schemas ensure data integrity
  • Parameterizable Templates: Specs generated dynamically via parameters
  • Guided Workflows: Step sequences with structured instructions

Available Skills (Prompts)

| Prompt | Description | |--------|-------------| | /kspec:prd | Create a PRD from a feature request | | /kspec:techspec | Create a Tech Spec from an existing PRD | | /kspec:tasks | Create incremental task list from PRD + Tech Spec | | /kspec:bootstrap | Analyze project and generate Claude Code configuration | | /kspec:implement_task | Implement the next available task | | /kspec:implement_all_tasks | Execute all pending tasks | | /kspec:qa | Run Quality Assurance on a feature | | /kspec:bugfix | Fix bugs documented in bugs.md | | /kspec:adr | Generate Architecture Decision Records | | /kspec:apidoc | Generate OpenAPI 3.1 documentation | | /kspec:release | Generate changelog and release notes | | /kspec:migrate | Plan and execute dependency upgrades | | /kspec:sync | Sync .claude/ and .github/ from .agents/ | | /kspec:ideia | Brainstorm session to decompose an app idea into modules |

Available Tools

| Tool | Description | Parameters | |------|-------------|------------| | list_specs | List all available specs | — | | get_spec | Get spec details | spec_id | | list_templates | List all templates | — | | get_template | Get template details | template_id | | create_spec_from_template | Create spec from template | template_id, template_name, parameters | | validate_spec | Validate a spec | spec (JSON) | | list_skills | List all skills | — | | get_skill | Get skill details | skill_id | | list_workflows | List all workflows | — | | get_workflow | Get workflow details | workflow_id | | start_workflow | Start a workflow instance | workflow_id, initial_context | | get_workflow_status | Running workflow status | instance_id | | next_step | Advance to next step | instance_id |

Available Resources

| Resource | URI | Description | |----------|-----|-----------| | Spec Catalog | spec://catalog | All specs catalog | | Spec by ID | spec://{spec_id} | Individual spec | | Workflow Catalog | workflow://catalog | All workflows catalog | | Workflow by ID | workflow://{workflow_id} | Individual workflow | | Server Info | spec://server/info | Server information |

Development

Prerequisites

  • Node.js >= 18
  • npm

Setup

git clone [email protected]:K77-dev/kspec-mcp-server.git
cd kspec-mcp-server
npm install
npm run build

Scripts

npm run dev          # Start dev server (tsx)
npm run build        # Build for production
npm start            # Run production build
npm run mcp:dev      # Interactive FastMCP dashboard

Updating Embedded Skills

When SKILL.md files change in the kspec repo, re-embed them:

KSPEC_SKILLS_DIR=/path/to/kspec/.claude/skills npm run rebuild

Publishing a New Version

# Bump version
npm version patch  # or minor, major

# Publish to npmjs.com
npm publish --access public

Technologies

License

MIT