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

@oat-app/mcp-bridge

v0.1.0

Published

stdio MCP bridge for the hosted oat MCP endpoint

Readme

@oat-app/mcp-bridge

@oat-app/mcp-bridge connects stdio MCP clients to the hosted oat MCP endpoint.

The oat MCP server remains hosted at https://oat-blond.vercel.app/api/mcp. This package is only a local transport bridge.

Claude Code

claude mcp add oat \
  --transport stdio \
  --env OAT_MCP_TOKEN=oat_mcp_xxx \
  -- npx -y @oat-app/mcp-bridge

Use a preview endpoint only when needed:

claude mcp add oat-preview \
  --transport stdio \
  --env OAT_MCP_TOKEN=oat_mcp_xxx \
  --env OAT_MCP_URL=https://YOUR_PREVIEW_DOMAIN/api/mcp \
  -- npx -y @oat-app/mcp-bridge

Verify with:

claude mcp list
claude mcp get oat

Generic MCP JSON

Use this form for clients that accept mcpServers JSON.

{
  "mcpServers": {
    "oat": {
      "command": "npx",
      "args": ["-y", "@oat-app/mcp-bridge"],
      "env": {
        "OAT_MCP_TOKEN": "oat_mcp_xxx"
      }
    }
  }
}

Claude Desktop

Add the same server entry to claude_desktop_config.json.

{
  "mcpServers": {
    "oat": {
      "command": "npx",
      "args": ["-y", "@oat-app/mcp-bridge"],
      "env": {
        "OAT_MCP_TOKEN": "oat_mcp_xxx"
      }
    }
  }
}

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.oat]
command = "npx"
args = ["-y", "@oat-app/mcp-bridge"]
env = { OAT_MCP_TOKEN = "oat_mcp_xxx" }

ChatGPT

ChatGPT does not use this stdio bridge package. For ChatGPT, test the hosted remote MCP endpoint directly:

https://oat-blond.vercel.app/api/mcp

Environment

| Variable | Required | Description | | --- | --- | --- | | OAT_MCP_TOKEN | Yes | oat MCP token from /settings/mcp | | OAT_MCP_URL | No | Endpoint override. Defaults to https://oat-blond.vercel.app/api/mcp | | OAT_MCP_DEBUG | No | Set to 1 for stderr debug logs | | OAT_MCP_TIMEOUT_MS | No | Request timeout. Defaults to 30000 |

Tokens are accepted only through environment variables. --token and --url arguments are intentionally not supported.

Debugging

{
  "env": {
    "OAT_MCP_TOKEN": "oat_mcp_xxx",
    "OAT_MCP_DEBUG": "1"
  }
}

Debug logs are written to stderr. stdout is reserved for MCP protocol messages. Token values are not printed.

Local Smoke Test

OAT_MCP_TOKEN=oat_mcp_xxx pnpm --filter @oat-app/mcp-bridge smoke

Use OAT_MCP_URL to test a preview deployment.