# agent-tools (x402 + MCP + A2A directory) MCP server

Discover x402 services, MCP servers and A2A agents by intent — agent-tools.cloud directory.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-agenttools-cloud-agent-tools-mcp
- Repository: https://github.com/AgentTools-Cloud/AgentToolsCollection
- Website: https://agent-tools.cloud

## Install
- Command: `uvx agent-tools-mcp`
- Endpoint: https://agent-tools.cloud/mcp-discovery/
- Auth: Not captured

## Setup notes
- Package: Pypi agent-tools-mcp v0.2.0
- Remote endpoint: https://agent-tools.cloud/mcp-discovery/

## Tools
- search - Find x402 / MCP services matching an intent or filter set.

    Two usage modes (agents pick whichever fits):
      A. Natural-language: `search(intent="fetch tweets for @user")`
      B. Pure browse:      `search(has_mcp=True, category="defi", top_k=10)`
         At least one of `intent`, `category`, `chain`, `has_mcp`,
         `min_confidence` must be supplied — otherwise the call is
         rejected (we won't dump 2300+ rows).

    Results are ranked by:
        (health=ok AND tx_30d>0) → health=ok → has-quality-signal →
        confidence → tx_30d → recency.
    So the highest-quality real-traffic services appear first.

    Each item includes (when available):
      - confidence    : 0.0–1.0 x402scan quality score.
      - tx_30d        : 30-day x402 payment count (proxy for real usage).
      - match_snippet : FTS snippet showing where `intent` hit ([[token]]).
      - match_reason  : list[str] of human-readable ranking signals.
      - mcp_url       : populated when the service exposes an MCP endpoint
                        (you can call it directly via streamable-http).
    Agents should prefer items with non-null confidence and tx_30d > 0
    unless the user explicitly wants experimental endpoints.

    Args:
        intent: What the agent wants to do (English or Chinese). Optional
            when at least one structured filter is set. Synonym expansion
            covers twitter↔X↔推特, whale↔巨鲸, price↔价格 etc.
        top_k: Max services to return (default 5, hard cap 25).
        max_price_usd: Upper bound on per-call price in USD.
        category: Filter (see `list_categories`).
        chain: "base", "polygon", "solana", "arbitrum", ...
        min_confidence: Minimum confidence (0.0–1.0). 0.8+ keeps only
            services x402scan rates as high-quality.
        has_mcp: When true, return only services with a callable MCP
            endpoint. Use this when the agent wants to chain another MCP
            server rather than perform raw HTTP+x402.
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- ask_services - Ask for the best x402/MCP services for an agent intent.

    This is the high-level discovery tool: it retrieves candidates from the
    directory, asks the configured backend LLM to rank only those candidates,
    and returns service cards for the selected recommendations. If the LLM is
    unavailable, it falls back to the directory ranker.

    Args:
        intent: Natural-language job the agent wants to accomplish.
        top_k: Max recommendations to return (1-10).
        max_price_usd: Optional per-call budget cap.
        category: Optional directory category filter.
        chain: Optional payment network filter, e.g. "base" or "solana".
        require_healthy: When true, only consider services marked health=ok.
        min_confidence: Optional x402scan quality floor (0.0-1.0).
        has_mcp: When true, only consider services with MCP endpoints.
        use_llm: Set false for deterministic retrieval-only fallback.
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- get - Get full details + ready-to-paste call template for a service.

    Returns the service card with payment, call, quality, resource samples,
    and ready-to-use MCP/x402 call hints. Use this after `search` or
    `ask_services` before paying/calling an external service.

    Args:
        slug: Service slug as returned by `search` items.
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- list_categories - List all available service categories in the directory. Endpoint: https://agent-tools.cloud/mcp-discovery/
- stats - High-level stats about the directory: total services, healthy count, sources. Endpoint: https://agent-tools.cloud/mcp-discovery/
- search_mcp_servers - Find MCP servers in the directory.

    Searches the standalone MCP directory (PulseMCP / official MCP registry
    import) unioned with x402 services that also expose an MCP endpoint.
    Returns normalised entries with a ready-to-use streamable-http
    `call_hint.mcp.url`.

    Args:
        intent: Natural-language description of the tool/capability needed.
        top_k: Max servers to return (1-20).
        chain: Optional payment-network filter for paid MCP servers.
        require_healthy: When true, only return servers marked health=ok.
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- get_mcp_server - Get the full card for one MCP server by slug. Endpoint: https://agent-tools.cloud/mcp-discovery/
- search_a2a_agents - Find A2A agents you can delegate a task to.

    Args:
        intent: Natural-language description of the task to delegate.
        top_k: Max agents to return (1-20).
        x402_only: When true, only return agents that advertise x402 payment.
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- search_resources - Unified search across x402 services, MCP servers and A2A agents.

    Args:
        intent: Natural-language query.
        protocol: Optional filter: "x402", "mcp" or "a2a".
        top_k: Max resources to return (1-50).
     Endpoint: https://agent-tools.cloud/mcp-discovery/
- register - Self-register an x402 / MCP service in the agent-tools directory.

    Service owners and agents may submit new services here. Submissions
    are auto-reviewed instantly by x402 verification (no human gate): if
    the URL proves x402 payment support it is listed immediately and shows
    up in `search`; otherwise it is rejected or retried automatically.
    Listing is FREE.

    Dedup: if a service with the same canonical origin (scheme://host)
    already exists in the directory we return its slug instead of
    creating a duplicate submission. Same goes for a still-pending
    submission with the same origin.

    Rate limit: at most 5 pending submissions per client IP per 24h.
    Hits beyond that get `{error: rate_limited}` — try again later or
    email contact@agent-tools.cloud for bulk imports.

    Args:
        url: Public HTTPS URL of the service (the x402-payable endpoint
            or its homepage). Required.
        name: Human-friendly name. Defaults to the URL hostname.
        description: One-paragraph description (max ~2000 chars).
        mcp_url: If the service speaks MCP, its streamable-http endpoint.
        category: Free-form (e.g. "defi", "search", "social"). Use
            `list_categories` to align with existing taxonomy.
        chains: Networks the service accepts payment on
            (e.g. ["base", "solana"]).
        price_min_usdc: Lower bound of per-call price in USDC.
        price_max_usdc: Upper bound of per-call price in USDC.
        contact: Optional email / handle the directory team can reach
            you on for clarifications.
     Endpoint: https://agent-tools.cloud/mcp-discovery/

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.AgentTools-Cloud
- Version: 0.2.0
- Runtime: Pypi
- Transports: STDIO, HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jun 4, 2026
- Source: https://registry.modelcontextprotocol.io
