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

mcp-omni-tool

v1.0.0

Published

Universal MCP server — stop installing 50 MCP servers. One tool, thousands of APIs via AgentClear dynamic discovery.

Readme

🔮 MCP Omni-Tool

Stop installing 50 MCP servers. Install one.

One MCP server. Thousands of APIs. Zero config headaches.

npm version License: MIT MCP Compatible

Your AI agent shouldn't need 50 different MCP servers to be useful. It needs one that connects to everything.

Get Started → · See Examples → · Get $5 Free Credit →


🤯 The Problem

Every new API your agent needs = another MCP server to find, install, configure, and maintain.

Want Slack, GitHub, Stripe, Twilio, and 46 other services? That's 50 package.json entries, 50 sets of API keys, 50 things that can break on update.

There's a better way.

⚡ The Solution

MCP Omni-Tool is a single MCP server powered by AgentClear that gives your AI agent dynamic access to thousands of APIs through one install and one API key.

Your agent discovers what it needs, then calls it — all through a unified proxy. No per-service config. No dependency hell.

┌─────────────┐      ┌──────────────────┐      ┌──────────────────────┐
│  Your Agent  │─────▶│  MCP Omni-Tool   │─────▶│  AgentClear Gateway  │
│  (Claude,    │      │  (1 MCP server)  │      │                      │
│   Cursor,    │      │                  │      │  Slack ─ GitHub      │
│   etc.)      │◀─────│                  │◀─────│  Stripe ─ Twilio     │
└─────────────┘      └──────────────────┘      │  Notion ─ Linear     │
                                                │  ... 1000s more      │
                                                └──────────────────────┘

🚀 Quick Start

1. Install

npm install -g mcp-omni-tool

2. Get Your API Key

Sign up at agentclear.dev and grab your key (starts with axk_).

🎁 Every new account gets $5 in free credit — no card required.

3. Configure

Add to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "omni-tool": {
      "command": "mcp-omni-tool",
      "env": {
        "AGENTCLEAR_API_KEY": "axk_your_key_here"
      }
    }
  }
}

4. Go

That's it. Your agent now has access to thousands of APIs.


📖 Usage

MCP Omni-Tool exposes two core operations to your agent:

discover — Find Available APIs

Your agent calls discover to search for services matching what it needs.

POST https://agentclear.dev/api/discover

{
  "query": "send a Slack message",
  "api_key": "axk_your_key_here"
}

Response:

{
  "services": [
    {
      "service_id": "slack_post_message",
      "name": "Slack — Post Message",
      "description": "Send a message to a Slack channel or DM",
      "parameters": {
        "channel": "string (required)",
        "text": "string (required)",
        "thread_ts": "string (optional)"
      }
    }
  ]
}

proxy — Call Any Discovered API

Once discovered, your agent calls the service directly through the proxy:

POST https://agentclear.dev/api/proxy/slack_post_message

{
  "api_key": "axk_your_key_here",
  "params": {
    "channel": "#general",
    "text": "Deployed v2.4.1 to production ✅"
  }
}

That's the entire pattern. Discover → Proxy. Your agent figures out the rest.


📊 Why Omni-Tool?

| | 50 Individual MCP Servers | 1 MCP Omni-Tool | |---|---|---| | Install | 50 packages, 50 configs | 1 package, 1 key | | API Keys | Manage 50 separate keys | 1 AgentClear key | | Updates | 50 packages to keep current | 1 package, always current | | New APIs | Find → install → configure → restart | Already there. Just call it. | | Agent Complexity | Must know which server handles what | Discovers capabilities dynamically | | Failure Surface | 50 potential breaking points | 1 stable gateway | | Setup Time | Hours | 2 minutes | | Cost | $0 + your time × 50 | $5 free to start |


🎁 $5 Free Credit for New Signups

Every new AgentClear account gets $5 in free credit — no credit card required.

That's enough for hundreds of API calls to test integrations, build prototypes, or just see what your agent can actually do when it has access to everything.

Sign up at agentclear.dev


💰 Framework Authors & Template Builders: Earn 40% Revenue Share

Building an MCP-powered template, framework, starter kit, or boilerplate?

Bundle MCP Omni-Tool and earn 40% of the revenue generated by users who sign up through your referral.

How it works:

  1. Include MCP Omni-Tool in your project's MCP config
  2. Register as a referral partner at agentclear.dev/partners
  3. Add your referral tag to the config
  4. Earn 40% rev-share on every user who activates through your template

This isn't an afterthought affiliate program — it's a core part of the model. We want framework authors to win when their users succeed.

Become a Partner


🔧 Supported Clients

MCP Omni-Tool works with any MCP-compatible client:

  • Claude Desktop
  • Cursor
  • Windsurf
  • Continue
  • Custom MCP integrations

🔑 API Key Format

All AgentClear API keys start with axk_ followed by a unique token:

axk_a1b2c3d4e5f6...

Keep your key secure. You can rotate keys at any time from the AgentClear dashboard.


📝 License

MIT © AgentClear


Built by AgentClear — the universal API gateway for AI agents.

Get Started · Documentation · Partner Program