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

choobyu-mcp

v1.0.0

Published

MCP server connecting Claude and other AI agents to Choobyu — verified structured topic databases (aircraft, pharmaceuticals, medical devices, microcontrollers, metals, minerals, batteries, sensors, and more).

Readme

Choobyu MCP Server

Connect Claude and other AI agents directly to Choobyu — verified, structured topic databases built for AI consumption. Aircraft specs, FAA data, pharmaceuticals, medical devices, microcontrollers, app processors, metals, minerals, polymers, battery chemistries, sensors, and more — all queryable as native tools, no custom integration needed.

Every record includes a confidence score, source URLs, and a one-line llm_summary an agent can use directly in a response.


Quick start (Claude Desktop)

Get an API key at choobyu.com (free Explorer tier available), then add this to your Claude Desktop config:

Windows: %APPDATA%\Claude\claude_desktop_config.json Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "choobyu": {
      "command": "npx",
      "args": ["-y", "choobyu-mcp"],
      "env": {
        "CHOOBYU_API_KEY": "cho_live_your_key_here"
      }
    }
  }
}

Fully quit and reopen Claude Desktop. You'll see the Choobyu tools available.

Works with any MCP-compatible client (Claude Desktop, Claude Code, Cursor, Windsurf, and others) — same command and env var everywhere.


Available tools

| Tool | Description | |---|---| | choobyu_list_topics | List all available topic databases | | choobyu_get_schema | Get the field schema for a topic | | choobyu_search | Search records by name or description | | choobyu_get_record | Get the full spec record for one entity | | choobyu_list_records | Browse records in a topic with pagination | | choobyu_filter | Filter by attributes, numeric ranges, or confidence | | choobyu_batch | Fetch many records in one call |


Example questions to ask your agent

  • "What are the specs for the Cessna 172 Skyhawk?"
  • "Find microcontrollers with at least 512 KB flash and a Cortex-M4 core"
  • "Compare the energy density of LFP vs NMC battery chemistries"
  • "What FDA device class is product code DQY?"
  • "List FAA-registered aircraft data fields Choobyu covers"
  • "What topics does Choobyu have data on?"

Environment variables

| Variable | Required | Description | |---|---|---| | CHOOBYU_API_KEY | Yes | Your Choobyu API key (cho_live_...) | | CHOOBYU_BASE_URL | No | API base URL (defaults to https://api.choobyu.com) |


Confidence scores

| Range | Meaning | |---|---| | 0.9 – 1.0 | High — 3+ sources agree | | 0.7 – 0.9 | Good — 2 sources agree | | 0.5 – 0.7 | Fair — single source | | 0.0 – 0.5 | Low — needs review |


Links

MIT License