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

agent-discovery-mcp-server

v0.2.2

Published

MCP server for the Agent Discovery Index — discover machine services from Claude, Cursor, VS Code, and any MCP client

Readme

agent-discovery-mcp-server

MCP server for Montexi — gives Claude, Cursor, VS Code, and any MCP client the ability to search 1,000+ indexed machine services.

When you ask Claude "find me a geocoding API" or "what translation services are available", it calls the Agent Discovery Index directly through MCP tools.

Installation

npm install -g agent-discovery-mcp-server

Configuration

Claude Desktop

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

{
  "mcpServers": {
    "agent-discovery": {
      "command": "npx",
      "args": ["agent-discovery-mcp-server"]
    }
  }
}

Claude Code

claude mcp add agent-discovery -- npx agent-discovery-mcp-server

VS Code / Cursor

Add to your MCP settings:

{
  "mcp": {
    "servers": {
      "agent-discovery": {
        "command": "npx",
        "args": ["agent-discovery-mcp-server"]
      }
    }
  }
}

Custom Index URL

Point to a self-hosted index by setting the environment variable:

{
  "mcpServers": {
    "agent-discovery": {
      "command": "npx",
      "args": ["agent-discovery-mcp-server"],
      "env": {
        "AGENT_DISCOVERY_INDEX_URL": "https://your-index.example.com"
      }
    }
  }
}

Available Tools

discover_services

Search for services by capability. Filters by access model and protocol.

Example prompts:

  • "Find me free translation APIs"
  • "What MCP servers are available for search?"
  • "Show me geocoding services that don't need an API key"
  • "Find x402 payment-gated services"

service_details

Get detailed information about a specific service endpoint.

Example prompts:

  • "Tell me about the service at https://api.example.com"
  • "What capabilities does api.notion.com have?"

index_stats

Get statistics about the index — total services, protocol breakdown, access classification.

Example prompts:

  • "How many services are in the agent discovery index?"
  • "Show me the index stats"

submit_service

Submit a new URL for the crawler to index.

Example prompts:

  • "Submit api.example.com for indexing"
  • "Add this service to the discovery index: https://myapi.com"

check_service_access

Probe a URL to determine its access requirements (free, API key, OAuth, payment).

Example prompts:

  • "Check if this API is free: https://api.example.com"
  • "What kind of auth does https://api.example.com need?"

How It Works

The MCP server wraps the agent-discovery-sdk and exposes the Agent Discovery Index API as MCP tools. It uses stdio transport (the standard for local MCP servers) and starts in under 2 seconds.

All data comes from the public index at montexi.com. No API keys or accounts needed.

License

MIT