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

kaushalstack-mcp

v0.1.0

Published

MCP server exposing kaushalstack — recommendation, round table, spec — as tools for Claude Desktop / Codex / any MCP host.

Readme

kaushalstack-mcp

Headless kaushalstack — recommend agents, run round tables, generate specs from any MCP host.

MCP server that exposes kaushalstack as tools for any MCP host — Claude Desktop, Codex, Cursor, your own scripts.

Use this when you want an LLM agent to assemble a domain round table, convene a tech round table, generate a spec, or browse past chats — without using the web UI.

What it exposes

| Tool | Maps to | Purpose | |---|---|---| | recommend_agents | POST /api/recommend | Pick 6–10 domain specialists for a prompt | | recommend_tech_agents | POST /api/recommend/tech | Pick 4–8 engineers off a spec | | run_roundtable | POST /api/roundtable | Run a discussion (domain or tech mode) | | generate_spec | POST /api/spec | Aisha synthesizes a spec from a chat | | list_chats | GET /api/roundtable/chats | List recent chats + their state |

Auth

Get your kaushalstack PocketBase token:

  1. Sign in at https://kaushalstack.com
  2. Open DevTools → Application → Local Storage → https://kaushalstack.com
  3. Copy the token field out of the pb_auth entry

Set it as KAUSHALSTACK_API_TOKEN in the host's MCP config (examples below).

The recommend tools work without a token (they only call public endpoints). Everything else — running a round table, generating a spec, listing chats — needs the token because the result is bound to your user account.

Install

# Once published to npm
npx -y kaushalstack-mcp

# Until then, run from the monorepo
cd apps/mcp && npm install && node src/index.js

Claude Desktop config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "kaushalstack": {
      "command": "npx",
      "args": ["-y", "kaushalstack-mcp"],
      "env": {
        "KAUSHALSTACK_API_URL": "https://kaushalstack.com",
        "KAUSHALSTACK_API_TOKEN": "eyJhbGciOi..."
      }
    }
  }
}

Restart Claude Desktop. The tools appear under the 🔌 attachment menu.

Codex / Cursor / other MCP hosts

Same shape — point at the kaushalstack-mcp binary and pass the two env vars. Stdio transport, no extra setup.

Typical session

A host (Claude / Codex) using these tools might do:

1. recommend_agents({ query: "I want to start a kirana shop online" })
   → 6 domain specialists matching the prompt
2. run_roundtable({ query, team: <the 6>, kind: "domain" })
   → 6 perspectives, returns chat_id
3. generate_spec({ chat_id })
   → one-page spec drafted from the discussion
4. recommend_tech_agents({ query: <spec_text> })
   → 5 engineers scored against the spec, not the original prompt
5. run_roundtable({ query: <"review this spec…">, team: <the 5>,
                   chat_id, kind: "tech" })
   → tech-team perspectives appended to the chat
6. generate_spec({ chat_id })
   → v2 spec absorbs both transcripts; Authors line includes everyone

That's the entire kaushalstack core loop, callable headlessly.

Config reference

| Env var | Default | Purpose | |---|---|---| | KAUSHALSTACK_API_URL | https://kaushalstack.com | Override for self-hosted deploys | | KAUSHALSTACK_API_TOKEN | (unset) | Required for run_roundtable, generate_spec, list_chats |

License

MIT