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

@speclife/mcp-server

v0.10.0

Published

MCP server for SpecLife - AI assistant interface

Readme

@speclife/mcp-server

⚠️ DEPRECATED: This MCP server is deprecated in favor of slash commands. See Migration Guide below.

MCP server for SpecLife - provides spec-driven development tools for AI assistants.

Migration Guide

Replace MCP tool calls with slash commands:

| MCP Tool | Slash Command | Notes | |----------|---------------|-------| | speclife_init | /speclife start | Creates worktree + branch | | speclife_submit | /speclife ship | Commit, push, create PR | | speclife_merge | /speclife land | Merge PR, cleanup, release | | speclife_release | /speclife release | Manual release | | speclife_implement | /openspec-apply | Use OpenSpec for implementation | | speclife_status | speclife status | CLI command | | speclife_list | speclife worktree list | CLI command |

Why Migrate?

  1. No token configuration: Slash commands use your editor's @github MCP
  2. Better integration: Works with OpenSpec's existing commands
  3. Simpler setup: No GITHUB_TOKEN or ANTHROPIC_API_KEY needed

Setup Slash Commands

# Install CLI
npm install -g @speclife/cli

# Initialize project (creates slash commands)
speclife init

# Run AI-guided setup
/speclife setup

Continued Support

The MCP server remains available for:

  • CI/automation scenarios
  • Editors without slash command support
  • Gradual migration

No breaking changes are planned. The server will continue to work as-is.

Installation

npm install -g @speclife/mcp-server

Configuration

Add to your MCP configuration:

Claude Desktop

{
  "mcpServers": {
    "speclife": {
      "command": "speclife-mcp",
      "env": {
        "GITHUB_TOKEN": "ghp_xxxx"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "speclife": {
      "command": "speclife-mcp",
      "env": {
        "GITHUB_TOKEN": "ghp_xxxx"
      }
    }
  }
}

Available Tools

All tools are deprecated. Use slash commands instead.

| Tool | Description | Replacement | |------|-------------|-------------| | speclife_init | Create worktree and scaffold proposal | /speclife start | | speclife_status | Show change state and progress | speclife status | | speclife_list | List all active changes | speclife worktree list | | speclife_submit | Commit, push, create PR | /speclife ship | | speclife_merge | Merge PR and cleanup | /speclife land | | speclife_implement | AI-driven implementation | /openspec-apply | | speclife_release | Create release PR | /speclife release |

License

MIT