MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

ARI MCP Server

by Antmanbuilds
Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Python MCP server: fair-price checks, leaderboards, Ed25519 receipt verification for x402/MPP.

About

Python MCP server: fair-price checks, leaderboards, Ed25519 receipt verification for x402/MPP.

Security Report

5.2
Moderate5.2Moderate Risk

ARI MCP is a well-designed price oracle and receipt verification server with clean architecture and proper security practices. The code demonstrates strong input validation, careful null-handling to prevent misinterpretation of prices, and reliance on cryptographic verification from a pinned external key. No authentication is required for read operations (appropriate for a public price oracle), though the server delegates critical verification to the remote API. Minor code quality observations noted but do not impact security posture. Supply chain analysis found 10 known vulnerabilities in dependencies (0 critical, 8 high severity). Package verification found 1 issue.

5 files analyzed · 14 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.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

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

What You'll Need

Set these up before or after installing:

Override the ARI API base URL. Defaults to https://agentrateindicators.com/api.Optional

Environment variable: ARI_API_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-antmanbuilds-ari-mcp-py": {
      "env": {
        "ARI_API_BASE_URL": "your-ari-api-base-url-here"
      },
      "args": [
        "-y",
        "ari-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

ARI · Agentic Rate Indicators

npm PyPI License MCP

Live fair-market-value lookups, leaderboards, and Ed25519 signed-receipt verification for x402/MPP services. ari-mcp lets any MCP-aware agent answer two questions cleanly:

  1. Is this API price fair? Compare a quoted unit price against the live ARI fair-price band for that service.
  2. Is this receipt real? Verify the signed receipt returned by an x402/MPP facilitator offline, with a pinned publisher key.

The same package ships for Node and Python, with the same tool surface and the same wire spec.

┌──────────┐     stdio     ┌──────────┐     HTTPS    ┌──────────────────────────┐
│  Agent   │ ────────────▶ │ ari-mcp  │ ───────────▶ │ agentrateindicators.com  │
│ (Claude, │ ◀──────────── │  server  │ ◀────────── │   /api/v1/*              │
│ Cursor…) │   tool JSON   └──────────┘   signed     └──────────────────────────┘
└──────────┘                                receipts

Install in your agent

Pick the host you use. Each block is copy-paste, no edits required.

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows:

{
  "mcpServers": {
    "ari": {
      "command": "npx",
      "args": ["-y", "ari-mcp"]
    }
  }
}

Cursor

~/.cursor/mcp.json (or the per-workspace .cursor/mcp.json):

{
  "mcpServers": {
    "ari": {
      "command": "npx",
      "args": ["-y", "ari-mcp"]
    }
  }
}

Continue

~/.continue/config.yaml:

mcpServers:
  - name: ari
    command: npx
    args: ["-y", "ari-mcp"]

Windsurf

~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "ari": { "command": "npx", "args": ["-y", "ari-mcp"] }
  }
}

Zed

~/.config/zed/settings.json:

{
  "context_servers": {
    "ari": {
      "command": { "path": "npx", "args": ["-y", "ari-mcp"] }
    }
  }
}

Gemini CLI / ChatGPT desktop / any other MCP host

command: npx, args: ["-y", "ari-mcp"]. Or, for Python-native hosts, command: uvx, args: ["ari-mcp-py"].

Tools

ToolWhat it does
is_fair_priceGreen / amber / red verdict for a quoted price against the live FMV band.
refuse_if_overpricedConvenience wrapper to call right before paying · returns {ok, reason}.
prepay_verdictFull pre-pay decision with FMV band, deviation, and a citable receipt id.
get_fmvMedian plus low / high band and sample size for a service.
get_serviceFull detail row · sources, related services, last observation.
list_servicesBrowse or filter the index by protocol or category.
get_leaderboardCheapest, most expensive, biggest movers in a category.
recent_observationsRaw observed price history for a service.
verify_receiptRe-verify a previously issued receipt id offline.
get_signed_receiptRe-fetch the signed body for a receipt id.
subscribe_alertSet up a webhook or email price alert for a service.

Every tool returns JSON shaped for citation rather than free text. Agents that quote tool output verbatim end up with good citations for free.

A real tool call

Asking Claude "is this quote fair before I pay it?" triggers:

{
  "tool": "is_fair_price",
  "arguments": {
    "slug": "openrouter-anthropic-claude-3-5-sonnet",
    "amount_usd": 4.10,
    "unit": "1m_input_tokens"
  }
}

and the server returns:

{
  "verdict": "amber",
  "fmv_usd": 3.04,
  "low_usd": 2.87,
  "high_usd": 3.21,
  "delta_pct": 34.9,
  "sample_size": 47,
  "currency": "USD",
  "unit": "1m_input_tokens",
  "receipt_id": "01J5ZK8E2K7Q3R5W8X9Y0Z1A2B",
  "signed_at": "2026-05-21T14:02:11Z"
}

The agent now has a concrete reason to push back on the quote, plus an auditable receipt id. When ARI has not yet computed a baseline for a service, verdict is "unknown" and the FMV fields are null rather than zero · agents should treat null as "no opinion", never as "free".

Verify a receipt yourself

# Node
npx ari-mcp verify --url https://agentrateindicators.com/api/v1/pubkey

# Python
uvx ari-mcp verify --url https://agentrateindicators.com/api/v1/pubkey

Both print OK on success and a structured failure with the exact reason on failure (hash mismatch, unknown key id, bad signature, missing header). See spec/verification.md for the by-hand walkthrough.

Why this exists

Agents are starting to spend real money through x402 and MPP facilitators. There are two things they cannot do today without help:

  • Sanity-check a price before paying it. Facilitators are free to quote anything. ARI keeps a live, public fair-price band per service so an agent (or a human reviewer) can see when a quote is out of line.
  • Verify a receipt after paying. Facilitators return signed metadata about the transaction, but most agents take this on faith. ARI publishes the receipt canonicalization and an Ed25519 verifier so receipts can be checked offline, against a pinned key.

ari-mcp exposes both as plain MCP tools. No new protocols for the agent author to learn.

Wire spec

The repository is the source of truth for the wire format:

  • spec/openapi.yaml · public HTTP surface
  • spec/signed-receipts.md · receipt canonicalization and header layout
  • spec/verification.md · step-by-step verifier in Node and Python

Anyone porting ari-mcp to another language can work from spec/ alone.

Packages

LanguagePackageSource
Node 18+ari-mcp on npmpackages/ari-mcp-ts
Python 3.10+ari-mcp-py on PyPIpackages/ari-mcp-py

Both packages share the same tool names, argument shapes, and JSON return shapes. Both ship offline receipt verification with a pinned key and an ACCEPTED_KEY_IDS list for graceful rotation. Both default to the public ARI API and accept ARI_API_BASE_URL to point at a private mirror.

Security

If you find a security issue, please report it privately. See SECURITY.md. The current publisher key, the canonicalization spec, and the verification walkthrough are all linked from there.

Contributing

See CONTRIBUTING.md. Bug reports, small fixes, and additional install snippets for other MCP hosts are all welcome. The internal API server, fair-price methodology, and data adapters live elsewhere and are intentionally not part of this repository · pull requests that try to add them will be closed.

License

Apache-2.0. See NOTICE for third-party attributions.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationPyPI Package

Details

Published May 21, 2026
Version 0.1.3
0 installs
Local Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
7
Installs
5.3
Security
No ratings yet
Local

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
6
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
534
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
80
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
45
Installs
6.0
Security
5.0
Local

MCP Marketplace

Free

by mcp-marketplace · Developer Tools

Search and install MCP servers from inside your AI client.

-
Stars
32
Installs
10.0
Security
5.0
Remote