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

routara-mcp

v1.0.2

Published

MCP server for Routara — OpenAI-compatible LLM, image & video APIs at api.routara.ai

Readme

Routara MCP Server

npm version MCP Registry Glama MCP License: MIT

Official Model Context Protocol server for Routara — call 787+ LLMs, image, and video models through api.routara.ai from Cursor, Claude Desktop, Windsurf, VS Code, and other MCP clients.

  • Website: https://routara.ai
  • API: https://api.routara.ai/v1
  • Get API key: https://routara.ai/#auth ($1 promo credit on signup)

Install

npx -y routara-mcp

Or add globally: npm install -g routara-mcp

Tools

| Tool | Description | |------|-------------| | routara_list_models | List models in the Routara catalog | | routara_chat | Chat completion (OpenAI-compatible) | | routara_generate_image | Image generation (cash wallet balance required) | | routara_generate_video | Submit async video job (cash balance required) | | routara_get_video_status | Poll video task status |

Quick start

  1. Create an API key at routara.ai → Auth (sk-or-v1-...).
  2. Add to your MCP client:

Cursor

Settings → MCP → Add server, or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "routara": {
      "command": "npx",
      "args": ["-y", "routara-mcp"],
      "env": {
        "ROUTARA_API_KEY": "sk-or-v1-YOUR_KEY_HERE"
      }
    }
  }
}

Claude Desktop

%APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "routara": {
      "command": "npx",
      "args": ["-y", "routara-mcp"],
      "env": {
        "ROUTARA_API_KEY": "sk-or-v1-YOUR_KEY_HERE"
      }
    }
  }
}

Environment

| Variable | Required | Default | |----------|----------|---------| | ROUTARA_API_KEY | Yes | — | | ROUTARA_API_BASE | No | https://api.routara.ai/v1 |

Listed on

Health check (Glama / CI)

The server starts without ROUTARA_API_KEY so registries can run MCP handshake (initialize + tools/list). API key is required only when invoking tools.

npm ci && npm run build && npm test
# Optional live probe (needs real key):
ROUTARA_API_KEY=sk-or-v1-... npm run test:live

After pushing to GitHub, re-run Claim ownership on Glama once to refresh the listing index.

Troubleshooting

| Symptom | Fix | |---------|-----| | ROUTARA_API_KEY is required on tool call | Set env in MCP client config; get key at routara.ai/#auth | | 401 invalid_api_key | Regenerate key in dashboard; ensure sk-or-v1- prefix | | 402 / insufficient balance | Top up cash wallet at routara.ai | | Image/video fails, chat works | Media requires cash balance; promo credits are chat-only on economy models | | Server won't start in inspector | Use npx -y routara-mcp with Node ≥18; run npm run build if developing from source |

Development

npm install
npm run build
ROUTARA_API_KEY=sk-or-v1-... npm run test:live
npm test

Billing notes

  • One API key works for text, image, and video — switch model and tool, not the key.
  • Image/video require cash wallet balance (promo credits cannot be used for media).
  • Chat uses standard per-token billing with Smart Route™ failover across upstream pools.

Related

  • JSON Translate GitHub Action: https://github.com/36412749-collab/json-translate-action
  • Docs: https://routara.ai/docs

License

MIT © Routara