com.tradallo/reputation
NPM · @TRADALLO/REPUTATION · 2 COMPONENTS · SCANNED AUG 3
Query cryptographically-verified trading reputations (humans + AI agents). ed25519-signed.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 92 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability67
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 944 tokens (~188/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage98
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 93% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @tradallo/reputation
claude mcp add com-tradallo-reputation -- npx -y @tradallo/reputation
codex mcp add com-tradallo-reputation -- npx -y @tradallo/reputation
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"com-tradallo-reputation": {
"type": "local",
"command": [
"npx",
"-y",
"@tradallo/reputation"
],
"enabled": true
}
}
} openclaw mcp add com-tradallo-reputation --command npx --arg -y --arg @tradallo/reputation
mcp_servers:
com-tradallo-reputation:
command: "npx"
args: ["-y", "@tradallo/reputation"] {
"mcpServers": {
"com-tradallo-reputation": {
"command": "npx",
"args": [
"-y",
"@tradallo/reputation"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +48
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- First check of Schema quality: unverified functional
- Licence: MIT functional
- 31 Jul 26 −24
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 43
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@tradallo/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
get_track_record ~209
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. The signature is ed25519-verified against Tradallo's published pubkey before this tool returns. Examples: - get_track_record("alpha-momentum-v3") — agent (default) - get_track_record("aaronjordan", "human") — human profile
| Name | Type | Req | Description |
|---|---|---|---|
| handle | string | yes | The Tradallo handle to look up (e.g. 'aaronjordan' for a human, 'alpha-momentum-v3' for an agent). Lowercase letters, digits, hyphens, underscores. |
| principal_type | string | — | Whether the handle is a human profile or an agent. Defaults to 'agent' (the more common reputation-query use case). |
No output schema declared.
No examples provided.
get_utrs ~144
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("alpha-momentum-v3", undefined, 50)
| Name | Type | Req | Description |
|---|---|---|---|
| agent_handle | string | yes | The agent's handle. |
| limit | integer | — | Page size (1-500). |
| since | string | — | ISO timestamp; only return UTRs closed at or after this. Defaults to the agent's registration anchor. |
No output schema declared.
No examples provided.
get_versions ~88
Fetch the full version history of an agent: semver tags, version_hash, policy_hash, when each version was deployed and superseded. Use this to understand which version of an agent's policy produced a given track record before delegating capital. Signature-verified. Example: - get_versions("alpha-momentum-v3")
| Name | Type | Req | Description |
|---|---|---|---|
| agent_handle | string | yes | The agent's Tradallo handle. |
No output schema declared.
No examples provided.
search_records ~234
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 that meet specific risk/return criteria rather than looking up a known handle. Every result is signature-verified against Tradallo's published pubkey. Example: - search_records({ min_sharpe: 1.5, min_trades: 100, max_drawdown: 0.15, sort_by: "sharpe", limit: 10 })
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Max results (1-100). |
| max_drawdown | number | — | Maximum drawdown as a fraction (e.g. 0.25 for 25%). |
| min_sharpe | number | — | Minimum annualized Sharpe ratio. |
| min_trades | integer | — | Minimum trade count. |
| principal_type | string | — | — |
| sort_by | string | — | Field to sort results by (descending). Default: net_pnl. |
| venue | string | — | Restrict to a specific venue (e.g. 'hyperliquid', 'dydx'). |
No output schema declared.
No examples provided.
verify_utr ~182
Look up a Universal Trade Receipt by its 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 so the caller can independently verify the anchor on chain. The signed envelope is ed25519-verified before this tool returns. Example: - verify_utr("b81f2c7e9a4d5e6f8a3b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f")
| Name | Type | Req | Description |
|---|---|---|---|
| utr_hash | string | yes | The 64-char hex SHA-256 UTR hash to look up. |
No output schema declared.
No examples provided.