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

@hitheo/mcp

v0.2.2

Published

MCP server for Theo AI — use Theo inside Cursor, Claude Code, Warp, Windsurf, and any MCP-compatible IDE

Readme

@hitheo/mcp

MCP server for Theo AI — use Theo as a tool inside any MCP-compatible IDE: Cursor, Claude Code, Warp, Windsurf, VS Code, and more.

What it does

Exposes Theo's orchestration engine (intent classification → model routing → skills → agent loop) as MCP tools so your IDE agent can call Theo for completions, code, research, images, and documents — all behind a single theo_sk_... key.

Install

The easiest way is via the SDK CLI, which auto-configures every IDE it can detect:

npm install -g @hitheo/sdk
export THEO_API_KEY=theo_sk_...
cd your-project
theo init

You can also invoke the MCP server directly:

npx @hitheo/mcp

Manual IDE Config

If you prefer to write the config by hand, point your IDE's MCP configuration at @hitheo/mcp:

{
  "mcpServers": {
    "theo": {
      "command": "npx",
      "args": ["-y", "@hitheo/mcp"],
      "env": { "THEO_API_KEY": "${env:THEO_API_KEY}" }
    }
  }
}

Config file locations:

| IDE | Path | | --- | --- | | Cursor | <project>/.cursor/mcp.json | | Claude Code | claude mcp add theo npx -y @hitheo/mcp (or <project>/.mcp.json) | | Warp | <project>/.warp/mcp.json | | Windsurf | ~/.codeium/windsurf/mcp_config.json | | VS Code | <project>/.vscode/mcp.json |

Restart the IDE after editing.

Environment Variables

| Name | Required | Description | | --- | --- | --- | | THEO_API_KEY | yes | Your Theo API key. Get one at api.hitheo.ai. | | THEO_BASE_URL | no | Override the API base URL. Defaults to https://hitheo.ai. |

Exposed MCP Tools

| Tool | What it does | | --- | --- | | theo_complete | Run an AI completion (auto-routes to the best engine). | | theo_code | Generate code (long-form output, framework/language hints). | | theo_research | Deep research with cited sources (async). | | theo_image | Generate images with style and aspect-ratio hints. | | theo_document | Generate PDF/DOCX/PPTX/XLSX/CSV documents. | | theo_skill_list | List installed or marketplace skills. | | theo_skill_install | Install a skill from the Theo marketplace. | | theo_status | Check engine health and latency. |

Project Configuration (theo.config.json)

Drop a theo.config.json at your project root to pin a persona, default mode, skills, or inline tools for every MCP tool call:

{
  "persona": "You are a backend engineer assistant for this Express API.",
  "skills": ["deep-research", "content-writer"],
  "defaultMode": "code"
}

The MCP server loads this on startup and applies it to every request.

JS/TS config is opt-in

theo.config.js and theo.config.ts are ignored by default (loading them would execute arbitrary code from the current working directory, which is unsafe whenever an IDE agent opens an untrusted repo). Set THEO_ALLOW_JS_CONFIG=1 in the environment if you need JS/TS config, and only do it in directories you trust.

Docs

License

MIT