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

@uniohq/mcp-server

v0.2.0

Published

Model Context Protocol server for the Unio agent tool registry. Exposes unio_search, unio_get_manifest, unio_inspect_capability, and unio_get_sdk_snippet as MCP tools that Claude, Claude Code, Cursor, and any MCP-compatible AI can call directly.

Readme

@uniohq/mcp-server

Model Context Protocol server for the Unio agent tool registry. Plugs into Claude Desktop, Claude Code, Cursor, Zed, or any other MCP-compatible AI and gives the model four tools for discovering and integrating SaaS APIs without leaving the chat.

npm install -g @uniohq/mcp-server
# or use npx — no install required
npx @uniohq/mcp-server

What it does

When you wire this MCP server into your assistant, the model gains four tools:

| Tool | Purpose | | --- | --- | | unio_search | Semantic intent search over the Unio registry. Ranked results with pricing + health. | | unio_get_manifest | Full unio.json manifest for a service: capabilities, auth, signup endpoint. | | unio_inspect_capability | Schema + example request/response + ready-to-run curl for a single capability. | | unio_get_sdk_snippet | Generates Python or TypeScript code that signs up and calls the capability. |

The whole flow: the model can go from "I need to send transactional email" to running, integration-ready code in three tool calls.

Setup — Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "unio": {
      "command": "npx",
      "args": ["@uniohq/mcp-server"],
      "env": {
        "UNIO_API_BASE": "https://xza0g37re9.execute-api.ap-south-1.amazonaws.com/prod"
      }
    }
  }
}

Restart Claude Desktop. You should see a 🔌 icon with unio listed and 4 tools available.

Setup — Claude Code

Edit ~/.claude/mcp_config.json (or use claude mcp add unio):

{
  "mcpServers": {
    "unio": {
      "command": "npx",
      "args": ["@uniohq/mcp-server"],
      "env": {
        "UNIO_API_BASE": "https://xza0g37re9.execute-api.ap-south-1.amazonaws.com/prod"
      }
    }
  }
}

Setup — Cursor

In .cursor/mcp.json at your project root:

{
  "mcpServers": {
    "unio": {
      "command": "npx",
      "args": ["@uniohq/mcp-server"]
    }
  }
}

How a session typically goes

You:    Build me an agent that sends a transactional welcome email.
Claude: [calls unio_search { intent: "send transactional email" }]
        I found Resend and Loops on the Unio registry. Both have free tiers.
        Which would you like to use?
You:    Resend.
Claude: [calls unio_get_manifest { service_id: "resend" }]
        [calls unio_inspect_capability { service_id: "resend", capability_id: "send_email" }]
        [calls unio_get_sdk_snippet { service_id: "resend", capability_id: "send_email", language: "python" }]
        Here's a runnable script — it onboards your agent with Resend
        programmatically and sends the welcome email.

Environment variables

| Variable | Default | Purpose | | --- | --- | --- | | UNIO_API_BASE | https://xza0g37re9.execute-api.ap-south-1.amazonaws.com/prod | Base URL of the Unio registry. Override for staging or self-hosted. |

License

Apache-2.0