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

thorbit-icp-mcp

v0.1.5

Published

MCP server for the Thorbit ICP generation pipeline

Readme

thorbit-icp-mcp

MCP server for the Thorbit ICP (Ideal Customer Profile) generation pipeline. Hosted Thorbit runs the durable ICP workflow; this package is a thin stdio client that forwards every tool call to the hosted Thorbit route and is authenticated + metered against your Thorbit MCP API key.

Install / run

npx thorbit-icp-mcp

Or add it to an MCP client config:

{
  "mcpServers": {
    "thorbit-icp": {
      "command": "npx",
      "args": ["thorbit-icp-mcp"],
      "env": {
        "THORBIT_ICP_API_KEY": "thbt_mcp_..."
      }
    }
  }
}

Generate the same JSON from the CLI:

npx -y -p thorbit-icp-mcp@latest thorbit-icp-mcp-install --json --api-key thbt_mcp_...

Prefer a key file on shared machines and servers:

mkdir -p ~/.config/thorbit
printf '%s\n' 'thbt_mcp_...' > ~/.config/thorbit/icp-mcp-key
chmod 600 ~/.config/thorbit/icp-mcp-key
npx -y -p thorbit-icp-mcp@latest thorbit-icp-mcp-install --key-path ~/.config/thorbit/icp-mcp-key

Run npx -y -p thorbit-icp-mcp@latest thorbit-icp-mcp-install --help for all options.

Environment

  • THORBIT_ICP_API_KEY — your Thorbit MCP API key (required). Fallbacks: THORBIT_API_KEY, THORBIT_MCP_API_KEY, or a key file at ~/.thorbit-icp-mcp-key (override path with THORBIT_ICP_MCP_KEY_PATH).
  • THORBIT_ICP_BASE_URL — optional, defaults to https://thorbit.ai. Fallback: THORBIT_BASE_URL.

The key is never logged.

Tools

  1. thorbit_icp_start — start a durable ICP run for a Thorbit project. Returns { runPublicId, poll }.
  2. thorbit_icp_get — poll an ICP run for lean status, phase/progress, research verdict, and the artifact manifest.
  3. thorbit_icp_get_result — read the composed ICP document (markdown or json) once the run is complete.
  4. thorbit_icp_artifact_read — read one artifact by id (e.g. final_icp, eos_framework, research_notes, reddit_insights).
  5. thorbit_icp_list — list past ICP runs, filterable by project, search, and status.
  6. thorbit_icp_search — full-text search across past ICP runs and their composed content.

It also exposes a resource template thorbit-icp://runs/{runPublicId} (run status as JSON) and a thorbit_icp_intake prompt.

Async poll flow

  1. Call thorbit_icp_start with projectPublicId (and optionally input / skipResearch). It returns quickly with a runPublicId and a poll target. Do not block.
  2. Poll thorbit_icp_get with that runPublicId until status is completed or failed.
  3. When complete, call thorbit_icp_get_result for the final ICP document, and thorbit_icp_artifact_read for any intermediate evidence.

Develop

npm install
npm run typecheck
npm run test
npm run build