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

teahose-mcp

v0.1.0

Published

MCP server for live AI-company intelligence — funding signals, lookalike search, podcast/newsletter buzz, and emerging themes from teahose.com

Readme

teahose-mcp

Live AI-company intelligence for Claude — funding signals, lookalike search, podcast/newsletter buzz, and emerging market themes, all drawn from the Teahose intel graph. No API key required to start; a free key unlocks higher rate limits and daily-email alerts.

claude mcp add teahose -- npx -y teahose-mcp

Or install as a Claude Code plugin (this repo doubles as a plugin marketplace):

/plugin marketplace add altmbr/teahose-mcp
/plugin install teahose@teahose-mcp

Tools

| Tool | Description | |------|-------------| | find_companies | Vector search over the Teahose AI-company graph — pass a competitor URL or a plain-text description to find similar companies with similarity scores. | | who_is_talking_about | What operators, VCs, and newsletters are saying about a company — mention signals from podcasts and newsletters, with source and episode. | | latest_funding | Fresh funding rounds across the AI landscape — amount, round, investors, dated and sourced. Optionally filter by theme slug. | | check_companies | Batch-check a list of company names (portfolio, CRM, watchlist) to see which had signals in the last 7 or 30 days. | | emerging_themes | Machine-discovered AI market themes ranked emerging-first with 7-day signal volume. | | get_company | Profile of an AI company: what it does, sector, themes, and recent funding/product/hiring/mention signals. | | watch_company | Subscribe to daily email alerts whenever a company has new signals. Requires a free API key. |


Security & Privacy

This server is a thin, read-only HTTP client. A security review should find:

  • Network access: The only endpoint contacted is https://www.teahose.com/api/mcp/v1/*. No other outbound requests are made.
  • No filesystem or shell access: The server does not read, write, or execute anything on the local filesystem.
  • No exec / child processes: No child_process, eval, or dynamic code execution of any kind.
  • No telemetry: The server emits no analytics, crash reports, or tracking beyond the API calls themselves. The API calls are subject to Teahose's privacy policy.
  • Credential scope: The only credential is the optional TEAHOSE_API_KEY environment variable. It is sent solely to teahose.com in an x-teahose-key request header.
  • Dependencies: Exactly two runtime dependencies — @modelcontextprotocol/sdk and zod. No native addons.
  • No postinstall scripts: package.json has no install, postinstall, or prepare hooks.
  • All tools are read-only except watch_company (which writes a watch subscription on teahose.com) and requires a valid API key.

Free Tier vs. Free Key

A free Teahose API key is available at https://www.teahose.com/mcp. Getting a key also subscribes you to the Teahose daily-digest email (unsubscribe any time).

| Limit | Keyless | Free key | |-------|---------|----------| | Requests / minute | 10 | 30 | | Requests / day | 50 | 1,000 | | Company signals returned | 5 | 25 | | Buzz mentions returned | 5 | 25 | | Funding rows returned | 15 (max 14-day window) | 50 (max 30-day window) | | check_companies names | 10 | 50 | | find_companies matches | 3 | 15 |


Configuration

| Variable | Required | Description | |----------|----------|-------------| | TEAHOSE_API_KEY | No | Free key from https://www.teahose.com/mcp. Unlocks higher limits and watch_company. | | TEAHOSE_API_URL | No | Override the API base URL (useful for local testing against a dev server). |

Setting your key in Claude Code

Add an env block to your MCP server entry in .claude/settings.json:

{
  "mcpServers": {
    "teahose": {
      "command": "npx",
      "args": ["-y", "teahose-mcp@latest"],
      "env": {
        "TEAHOSE_API_KEY": "your-key-here"
      }
    }
  }
}

Or set TEAHOSE_API_KEY in your shell environment before starting Claude Code.


Example Prompts

Who raised this week in humanoid robotics?
Find companies similar to https://physicalintelligence.company
Who's talking about Skild AI on podcasts and newsletters?
What AI themes are emerging right now?
Give me a quick profile of Covariant and its recent signals.
Check my portfolio: Covariant, Physical Intelligence, Skild AI, Figure, Apptronik

License

MIT — see LICENSE.

Homepage · npm