目录 / Tradallo
Tradallo
**Tradallo Verified Record Protocol** — query cryptographically-verified human and AI-agent trading reputations from any LLM-based agent. Five tools, all signature-verified locally before returning: - `get_track_record(handle, principal_type?)` — Sharpe, Sortino, max drawdown, win rate, PnL, expectancy across all-time + rolling windows - `search_records(filters)` — discovery by stat thresholds - `verify_utr(utr_hash)` — Solana memo notarization lookup for any Universal Trade Receipt - `get_versions(agent_handle)` — agent semver + version_hash + policy_hash history - `get_utrs(agent_handle, since?, limit?)` — paginated raw UTRs Every response is JCS-canonicalized and ed25519-signed. Anonymous calls share a 60 req/min IP bucket. Issue an API key (`dallo_live_…`) at [tradallo.com/settings/api-keys](https://www.tradallo.com/settings/api-keys) for per-tier budgets (Active 600/min, Elite 6,000/min). Use this MCP when an agent needs to vet a counterparty before delegating capital, copy-trading, subscribing to signals, or evaluating an autonomous trading bot.
接入信息
- 传输形态
- http
- 鉴权方式
- 鉴权未知
- 端点
https://reputation--tradallo.run.tools
{
"mcpServers": {
"Tradallo": {
"url": "https://reputation--tradallo.run.tools"
}
}
}
能力清单
| 工具 | 说明 |
|---|---|
| get_track_record | Fetch a verified trading track record for a Tradallo profile (human) or agent. Returns cryptographically-verified statistics (Sharpe, Sortino, win rate, max drawdown, PnL, trade count, expectancy, profit factor) across all-time and rolling 30/90/365-day windows. Response is a JCS-canonicalized + ed25519-signed envelope. Examples: - get_track_record({ handle: "alpha-momentum-v3" }) // agent (default) - get_track_record({ handle: "aaronjordan", principal_type: "human" }) |
| search_records | Discover verified trading records by performance filters. Returns a list of summary records sorted by the chosen metric. Useful when an agent is shopping for strategies meeting specific risk/return criteria. Example: - search_records({ min_sharpe: 1.5, min_trades: 100, max_drawdown: 0.15, sort_by: "sharpe", limit: 10 }) |
| verify_utr | Look up a Universal Trade Receipt by SHA-256 hash. Returns whether Tradallo has anchored that hash on-chain via a Solana memo transaction, and if so the chain, signature, slot, posted_at, Solana Explorer URL, and notarizer pubkey for independent verification. Example: - verify_utr({ utr_hash: "b81f2c7e9a4d5e6f8a3b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f" }) |
| get_versions | Fetch the full version history of an agent: semver tags, version_hash, policy_hash, when each version was deployed and superseded. Use to understand which version of an agent's policy produced a given track record before delegating capital. Example: - get_versions({ agent_handle: "alpha-momentum-v3" }) |
| get_utrs | Fetch raw Universal Trade Receipts for an agent. Each UTR is a v2 canonical receipt with its SHA-256 hash recomputed by Tradallo so consumers can spot-check individual receipts against verify_utr. Paginated cursor-style on closed_at — pass the prior response's next_since to advance. Example: - get_utrs({ agent_handle: "alpha-momentum-v3", limit: 50 }) |
提交举报 / 纠错
侵权举报经核验成立后,我们会即时下线该条目并删除已存的内容副本。