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

nerq-gateway

v1.0.0

Published

One MCP server. 25,000 tools. Zero config. Trust-verified AI agent discovery for Claude, Cursor, and any MCP client.

Downloads

98

Readme

nerq-gateway

One MCP server. 25,000 tools. Zero config.

Your AI agent just got 1000x more capable.

Install

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "nerq": {
      "command": "npx",
      "args": ["-y", "nerq-gateway"],
      "env": {
        "NERQ_AUTO_DISCOVER": "true"
      }
    }
  }
}

Restart Claude. Done. You now have access to 25,000+ MCP servers, all trust-verified.

What happens

  1. You ask Claude: "Search my GitHub repos for security issues"
  2. Claude asks nerq-gateway's find_tool: "I need a GitHub search tool"
  3. Gateway resolves: github-mcp-server (Trust: 82, A, zero CVEs)
  4. Gateway returns the recommendation with install instructions
  5. Claude uses the tool

Every tool is trust-verified before use. No manual configuration needed.

Configuration

| Env Variable | Default | Description | |-------------|---------|-------------| | NERQ_MIN_TRUST | 60 | Minimum trust score for tools | | NERQ_AUTO_DISCOVER | true | Auto-suggest tools for unknown tasks | | NERQ_PRECONNECT | (empty) | Comma-separated servers to connect on startup | | NERQ_API_URL | https://nerq.ai | Nerq API URL |

Tools

| Tool | Description | |------|-------------| | find_tool | Find the best tool for any task from 25,000+ options | | check_trust | Check trust score for any agent or tool | | search_agents | Search 204,000+ agents with filters | | compare_agents | Compare two agents side-by-side |

Examples

Find a tool

> find_tool("query postgres database")

Recommended: supabase/supabase (Trust: 72.2, B)
MCP Config:
{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": ["-y", "@supabase/mcp-server"]
    }
  }
}

Check trust

> check_trust("langchain")

Trust Score: 87.6/100 (A)
Recommendation: PROCEED
Known CVEs: 0
Verified: Yes

Compare

> compare_agents("langchain", "llamaindex")

| Metric | langchain | llamaindex |
|--------|-----------|------------|
| Trust  | 87.6      | 89.9       |
| Grade  | A         | A          |
| Stars  | 127K      | 47K        |

Why

  • Without gateway: Configure each MCP server manually. Hope they're safe. Limited to what you set up.
  • With gateway: One config line. 25,000 tools. Every one trust-verified. Auto-discovery for new needs.

API

The gateway uses the Nerq API:

  • GET /v1/resolve?task=X — Find best tool for a task
  • GET /v1/preflight?target=X — Check trust score
  • GET /v1/discover?q=X — Search agents

Free tier: 100 requests/day. No API key needed.

License

MIT

Built by Nerq — the trust layer for AI agents.