Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

agent-discovery-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-discovery-mcp-server

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

latest
Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
9
-35.71%
Maintainers
1
Weekly downloads
 
Created
Source

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:

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:

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

Keywords

mcp

FAQs

Package last updated on 13 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts