MCP server and client for querying cryptographically-verified human and AI-agent trading reputations with on-chain notarization lookup.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Reputation.
handleCallable MCP tool function
aaronjordanCallable MCP tool function
alpha-momentum-v3Callable MCP tool function
principal_typeCallable MCP tool function
MCP server + TypeScript client + CLI for the Tradallo Verified Record Protocol. Three ways to query cryptographically-verified human and agent trading records:
Every response is JCS-canonicalized + ed25519-verified against Tradallo's published pubkey at tradallo.com/.well-known/tradallo-pubkeys.json before being surfaced. The signature lives in the envelope; this client fetches the pubkey registry, resolves the key_id, verifies the signature, and only then returns the data. Replay protection via served_at + max_age_seconds.
Add to your claude_desktop_config.json (Settings โ Developer โ Edit Config):
Restart Claude Desktop. The Tradallo tools should appear in the tool palette.
Add to ~/.cursor/mcp.json (or via Cursor Settings โ MCP):
Speaks MCP over stdio.
Point at your own deploy by setting TRADALLO_BASE_URL:
The same binary doubles as a terminal CLI when invoked with a subcommand:
NO_COLOR=1 disables ANSI. TRADALLO_BASE_URL overrides the API base.
Embed the verifying client in your own TS/JS code:
The verification flow happens INSIDE getSigned. If anything fails โ bad signature, expired envelope, unknown key, schema mismatch โ the call throws. You never see unverified data.
get_track_record(handle, principal_type?)Fetch a verified track record for a Tradallo profile or agent.
Inputs:
handle (string, required) โ the Tradallo handle (e.g. aaronjordan, alpha-momentum-v3)principal_type ("human" | "agent", optional, default "agent") โ which namespace to look inReturns: the full signed payload (verification level, all-time + rolling 30/90/365d stats including Sharpe, max drawdown, win rate, PnL, expectancy).
Example use:
"Show me Aaron Jordan's verified trading record on Tradallo."
search_records(filters)Discover verified records matching performance criteria.
Inputs (all optional): min_sharpe, min_trades, max_drawdown, venue, principal_type, sort_by, limit.
Returns: sorted list of human/agent summaries with their stats. Signature-verified.
verify_utr(utr_hash)Look up a Universal Trade Receipt by hash. Returns whether Tradallo has anchored that hash on-chain via a Solana memo, and if so the chain, signature, slot, posted_at, Solana Explorer URL, and notarizer pubkey so the caller can independently verify on-chain.
Returns: { found, anchored_on_chain, chain?, signature?, slot?, posted_at?, explorer_url?, notarizer_pubkey? }.
get_versions(agent_handle)Fetch an agent's full version history (semver tags, version_hash, policy_hash, when each version was deployed and superseded). Signature-verified.
get_utrs(agent_handle, since?, limit?)Fetch raw Universal Trade Receipts for an agent, paginated cursor-style on closed_at. Each receipt includes its SHA-256 hash recomputed by Tradallo so consumers can spot-check individual records.
Every signed Tradallo API response wraps the data in a JCS-canonicalized (RFC 8785) envelope with an ed25519 signature:
This MCP server:
/.well-known/tradallo-pubkeys.json (cached 5 min)signature.key_id โ ed25519 public key{data, schema_version, served_at, max_age_seconds}now > served_at + max_age_seconds (replay protection)If any check fails, the tool call returns an error rather than the data. The agent is told why.
Identity (who is the agent) and payments (how does it pay) are solved in 2026 by x402, MPP, Coinbase Agentic Wallets, and ERC-8004. Reputation is not. When an agent decides whether to delegate capital, copy trades, or subscribe to signals from another party, it needs a way to ask: "is their record real?"
This MCP server is the lowest-friction way to ask that question.
Today the public API is anonymous and IP-rate-limited (60 req/min). We're rolling out tiered access via x402, the HTTP 402 payment-required standard, so agents can pay USDC micro-transactions on Base to bypass rate limits and unlock higher-throughput tiers without any signup or API-key dance.
Forward-compatible expectations:
The rate-limit response will gain an x402 payment-options block once the facilitator pipeline is wired. This MCP server will start auto-paying when it sees a 402 with x402 metadata. Until then, all queries are free and verifiable.
A working example agent that queries Tradallo before delegating capital: github.com/tradallo/agent.
See CHANGELOG.md.
MIT
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/tradallo-reputation)<a href="https://allmcps.com/mcp/tradallo-reputation"><img src="https://allmcps.com/api/badge/tradallo-reputation?style=directory" alt="Reputation on AllMCPs" /></a>