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-kb-mcp

v0.2.6

Published

MCP server for Thorbit Knowledge Base ingestion, search, and grounded answers

Downloads

1,743

Readme

Thorbit KB MCP

Local stdio MCP server for Thorbit Knowledge Base tools. The package proxies tool calls to hosted Thorbit API routes; it does not connect to the database directly.

Install

Generate a Thorbit MCP API key from Thorbit Settings -> MCPs, then run the stdio server through your MCP client:

npx -y thorbit-kb-mcp@latest

MCP client example:

{
  "mcpServers": {
    "thorbit-kb": {
      "command": "npx",
      "args": ["-y", "thorbit-kb-mcp@latest"],
      "env": {
        "THORBIT_API_KEY": "thbt_mcp_..."
      }
    }
  }
}

Generate the same JSON from the CLI:

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

Optional:

  • THORBIT_BASE_URL: hosted Thorbit app URL. Defaults to https://thorbit.ai.
  • THORBIT_KB_MCP_KEY_PATH: file containing the API key. Defaults to ~/.thorbit-kb-mcp-key.
  • thorbit-kb-mcp-install: prints a terracotta Thorbit KB setup screen by default.
  • thorbit-kb-mcp-install --json: prints only MCP client JSON for scripts.
  • thorbit-kb-mcp-install --key-path ~/.config/thorbit/kb-mcp-key: emits config that reads the key from a local file instead of embedding it inline.

Internal Admin Key

Internal Thorbit operator keys should be generated from the app repo, not the Settings UI:

npm run mcp:admin-key -- --org-id org_... --base-url https://thorbit.ai

The command writes the raw key to ~/.thorbit-kb-mcp-admin-key with 0600 permissions and prints an MCP config that references THORBIT_KB_MCP_KEY_PATH. Admin keys bypass credit deduction, but provider cost and MCP tool usage are still logged.

Tools

  • thorbit_kb_list
  • thorbit_kb_create
  • thorbit_kb_source_status
  • thorbit_kb_ingest_url
  • thorbit_kb_ingest_site
  • thorbit_kb_ingest_youtube
  • thorbit_kb_ingest_text
  • thorbit_kb_search
  • thorbit_kb_ask

External ingestion tools use MCP Scraper through hosted Thorbit and may incur provider cost.