MCP Server for Agent Reputation & Trust Scoring
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Reputation and trust scoring service for AI agents, exposed entirely as an MCP server. Evaluate counterparties before transacting, report interaction outcomes, issue portable trust certificates, and detect Sybil attacks.
Add AgentTrust to your MCP client configuration:
Or for local development via stdio:
Response:
Store the private_key_hex immediately -- it is shown only once.
Response:
Both parties should report for mutual confirmation (higher credibility).
AgentTrust supports two MCP transports:
| Transport | Use case | Endpoint |
|---|---|---|
| Streamable HTTP | Remote agents, production | https://agent-trust.radi.pro/mcp |
| stdio | Local development, MCP Inspector | uv run python -m agent_trust.server |
AgentTrust supports two authentication methods. Many tools work without authentication, but reporting interactions, filing disputes, and issuing attestations require it.
Obtain a bearer token from AgentAuth and pass it as access_token. This provides the full set of scopes:
| Scope | Grants |
|---|---|
trust.read | Score breakdowns, pending confirmations |
trust.report | Report and confirm interactions |
trust.dispute.file | File disputes |
trust.dispute.resolve | Resolve disputes (arbitrators) |
trust.attest.issue | Issue signed attestations |
trust.admin | Alert subscriptions |
Register with register_agent and generate tokens with generate_agent_token. Provides trust.read and trust.report scopes. You can upgrade to AgentAuth later via link_agentauth.
Tools marked as "Auth: none" work without any token. Useful for checking trust scores and verifying attestations.
discoverAuth: none
Returns the complete service catalog: available tools, auth methods, score types, interaction types, rate limits, and a quickstart guide. Call this first when connecting.
register_agentAuth: none
Register a new agent in the trust network. Three paths:
access_token from AgentAuthpublic_key_hex (hex-encoded Ed25519 public key)| Parameter | Type | Required | Description |
|---|---|---|---|
display_name | string | no | Human-readable name (max 200 chars) |
capabilities | list[string] | no | Tags like ["search", "code-review"] (max 50) |
metadata | dict | no | Arbitrary key-value data (max 10KB) |
access_token | string | no | AgentAuth bearer token |
public_key_hex | string | no | Hex-encoded Ed25519 public key |
generate_agent_tokenAuth: none (uses private key directly)
Generate a signed JWT access token for standalone agents.
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | yes | UUID from register_agent |
private_key_hex | string | yes | 64 hex chars, Ed25519 private key |
ttl_minutes | int | no | Token lifetime, default 60, max 1440 |
whoamiAuth: required
Check your identity, current trust scores, and scopes.
| Parameter | Type | Required | Description |
|---|---|---|---|
access_token | string | no | AgentAuth bearer token |
public_key_hex | string | no | Hex-encoded public key |
get_agent_profileAuth: none (authenticated calls get extra detail)
Retrieve the public profile for any agent.
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | yes | UUID to look up |
access_token | string | no | For additional details |
search_agentsAuth: none
Search agents by trust score, capabilities, and interaction count.
| Parameter | Type | Required | Description |
|---|---|---|---|
min_score | float | no | Minimum score 0.0-1.0 (default 0.0) |
score_type | string | no | overall, reliability, responsiveness, honesty, or domain:* |
capabilities | list[string] | no | Required capabilities (must have ALL) |
min_interactions | int | no | Minimum interaction count |
limit | int | no | Max results, default 20, max 100 |
link_agentauthAuth: required (AgentAuth token)
Link an existing standalone profile to an AgentAuth identity, merging interaction history. The canonical agent_id after linking is always the original standalone UUID β the AgentAuth UUID is stored as agentauth_id in metadata.
| Parameter | Type | Required | Description |
|---|---|---|---|
access_token | string | yes | AgentAuth bearer token |
public_key_hex | string | yes | Public key from standalone registration |
signed_proof | string | yes | JWT signed with private key (claims: sub, action, iat) |
dry_run | bool | no | Validate everything without committing changes (default false) |
Response:
On dry_run=true: returns would_link_agent_id, agentauth_id, current_scores, interaction_count, capabilities, and message β no changes are persisted.
Error codes: invalid_input, proof_sig_invalid, proof_expired, key_not_found, already_linked, authentication_failed.
verify_link_proofAuth: required (AgentAuth token)
Preflight check: validate a link_agentauth proof without writing to the database. Runs the same validation steps (token authenticity, key lookup, proof signature, expiry, already-linked check) but never persists any changes. Use this before calling link_agentauth to confirm everything is in order.
| Parameter | Type | Required | Description |
|---|---|---|---|
access_token | string | yes | AgentAuth bearer token |
public_key_hex | string | yes | Hex-encoded Ed25519 public key of the standalone agent |
signed_proof | string | yes | JWT signed with the standalone private key |
Response:
agent_statusAuth: required
One-call status snapshot combining identity, trust scores, pending confirmation count, and active attestations. Useful as a dashboard or health check.
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/agenttrust-4)<a href="https://allmcps.com/mcp/agenttrust-4"><img src="https://allmcps.com/api/badge/agenttrust-4?style=directory" alt="AgentTrust on AllMCPs" /></a>