Back to Browse

Agentrank MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Find real, verifiable businesses with provenance and source URLs - for AI agents.

About

Find real, verifiable businesses with provenance and source URLs - for AI agents.

Security Report

5.2
Moderate5.2Moderate Risk

A well-structured MCP server with proper authentication, clean code, and appropriate permission scoping. The API key is correctly handled through environment variables without logging, and the server implements proper rate-limit and error handling. No significant security vulnerabilities detected. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

5 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your AgentRank agent API key (register at https://agentsafepath.com/registrar.html).Required

Environment variable: AGENTRANK_API_KEY

API base URL (optional).Optional

Environment variable: AGENTRANK_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-saviodamato-agentrank-mcp": {
      "env": {
        "AGENTRANK_API_KEY": "your-agentrank-api-key-here",
        "AGENTRANK_BASE_URL": "your-agentrank-base-url-here"
      },
      "args": [
        "agentrank-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

AgentRank MCP server

MCP server for AI agents to search real, source-backed businesses. Every result carries a source URL and a trust score, so your agent acts on facts — never invented phone numbers or addresses. Coverage: Brazil, US, Europe (~2.7M businesses, growing).

Works with any MCP client (Claude Desktop, Cursor, …). Public beta · free key, no invite · website: https://agentsafepath.com · official MCP registry: io.github.saviodamato/agentrank-mcp.

Use cases

  • Business search / company lookup with source-backed data.
  • Local business search for agents (city + category + contact).
  • Company profile: contacts, address, website, provenance.
  • Source-backed company data instead of hallucinated details.

Tools

  • search_businesses(intent, limit=10) — find businesses by a natural-language intent (e.g. "farmácia em Copacabana com telefone", "software company in California"). Returns ranked results with fit_score, trust_score, justification, risks and the source URL of each fact.
  • get_business_profile(company_id) — full profile of a result: location, contact channels, hours, offers, policies and evidence, each with provenance and source.

1. Get an API key

Register your agent (free, no invite) at https://agentsafepath.com/registrar.html — you receive a key once. It identifies your agent and is sent as Authorization: Bearer <key>.

2. Add it to your MCP client

Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit Config) and add:

{
  "mcpServers": {
    "agentrank": {
      "command": "uvx",
      "args": ["agentrank-mcp"],
      "env": { "AGENTRANK_API_KEY": "ak_your_key_here" }
    }
  }
}

Restart Claude Desktop. You'll see search_businesses and get_business_profile available. (uvx comes with uv; or use the "From source" option below.)

Cursor

Add the same block under mcpServers in your Cursor MCP settings.

From source (no packaging)

pip install -r requirements.txt
AGENTRANK_API_KEY=ak_your_key_here python -m agentrank_mcp.server

And point your client's command at python with args ["-m", "agentrank_mcp.server"] and the folder on PYTHONPATH.

Environment variables

VarRequiredDefault
AGENTRANK_API_KEYyes
AGENTRANK_BASE_URLnohttps://api.agentrank.intelligenceofcode.com

The key is never logged.

Beta & limits

Public beta. Free tier: ~100 queries/day, 1500/month per agent (HTTP 429 with Retry-After when exceeded). One key per agent; the key is shown once at registration.

How agents should use the data

Every result carries sources (source URLs). Verify provenance before acting — data without a source should not be used. trust_score (0–100) reflects how safe the entity is to commit to; fit_score reflects match to the intent.


mcp-name: io.github.saviodamato/agentrank-mcp

Reviews

No reviews yet

Be the first to review this server!