revettr-mcp
Server Details
Counterparty risk scoring for agentic commerce via x402 micropayments.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- AlexanderLawson17/revettr-python
- GitHub Stars
- 3
- Server Listing
- revettr
Available Tools
3 toolsexport_audit_bundleAInspect
Export a JWS-signed audit-trail bundle of scoring decisions for a wallet.
MCP equivalent of GET /v1/audit/export. Compliance artifact for EU AI Act
Article 12 logging / NYDFS certification / debanking-defense. Because audit
data covers arbitrary wallets, this tool is operator-gated: pass the
operator's admin_token (checked against REVETTR_ADMIN_TOKEN).
Disabled when that env var is unset. Note: admin_token travels in the
MCP request payload, so operators should treat MCP transcripts/logs as
sensitive. Verify the returned bundle_jws
against /.well-known/jwks.json; the schema is in docs/audit-trail-export.md.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ||
| start | No | ||
| admin_token | Yes | ||
| wallet_address | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosure and does so excellently. It reveals JWS signing, operator-gated access via admin_token checked against REVETTR_ADMIN_TOKEN, disabled behavior when env var is unset, sensitivity of admin_token in MCP transcripts, and verification steps against JWKS. These are substantive behavioral traits beyond basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each adding essential information: purpose, compliance context, authentication, and verification. It is somewhat lengthy but not verbose; every sentence contributes to operational understanding. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (auth, signing, compliance) and presence of an output schema, the description covers key operational aspects: JWS signing, verification procedure, disabled state, and sensitivity of logs. It doesn't detail error conditions, but the output schema likely handles return format. The reference to docs/audit-trail-export.md adds completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains wallet_address and admin_token but entirely omits start and end parameters, leaving their purpose ambiguous. For a tool with four params, this is a significant gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Export a JWS-signed audit-trail bundle of scoring decisions for a wallet.' This is a specific verb+resource combination that distinguishes it from sibling tools like score_counterparty (scoring) and verify_issuer (verification). The mention of the MCP equivalent of GET /v1/audit/export further clarifies its role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context by labeling it as a 'Compliance artifact for EU AI Act Article 12 logging / NYDFS certification / debanking-defense.' It also notes operator-gating and prerequisites (admin_token, env var). However, it does not explicitly mention alternatives or when not to use this tool, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
score_counterpartyAInspect
Score a counterparty before sending money. Returns risk score 0-100.
Accepts EVM wallets (0x...), Stellar wallets (G...), domains, IPs, and company names.
| Name | Required | Description | Default |
|---|---|---|---|
| ip | No | ||
| chain | No | base | |
| domain | No | ||
| company_name | No | ||
| stellar_wallet | No | ||
| wallet_address | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden. It discloses the output type (risk score 0-100) and accepted input categories, which is useful. But it omits behavioral details such as how multiple parameters are handled (e.g., precedence), whether the operation is read-only, or any rate limits or prerequisites. This is not misleading but incomplete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences, front-loaded with the core purpose and output. Every word adds value, and no redundant details are present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 6 optional parameters and no annotations, the description is too thin. The output schema exists, so return details are covered, but critical input selection semantics are missing. The agent doesn't know if it should provide one identifier or many, which parameters are exclusive, or what the 'chain' parameter controls. This gap hinders correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the description is the only guide. It maps input types to parameters (EVM wallets, Stellar wallets, domains, IPs, company names) but does not explicitly name all parameter fields or explain the 'chain' parameter. It also doesn't state whether exactly one identifier is required or how combinations behave, leaving ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Score a counterparty before sending money' with a specific verb 'score' and resource 'counterparty'. It also specifies the output ('risk score 0-100'). This differentiates it from sibling tools like verify_issuer and export_audit_bundle, which have distinct operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'before sending money' provides a clear use context. It also lists accepted input types, giving guidance on what to pass. However, it does not explicitly mention when not to use this tool or name alternative tools, missing some exclusionary guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_issuerAInspect
Get an advisory risk verdict for a validated MCP issuer (iss).
Attach this at your MCP iss validation step: identity is your job, this
adds risk. Returns the same signed RiskCheckResult as POST /v1/iss-verdict.
Advisory and non-blocking — you decide based on the tier.
| Name | Required | Description | Default |
|---|---|---|---|
| iss | Yes | ||
| chain | No | base | |
| iss_kind | No | url | |
| wallet_address | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the advisory and non-blocking behavior, signed response type, and equivalence to an API endpoint. It describes the tool as adding a risk layer, giving the agent clear expectations. Minor gap: no mention of error behavior or side effects, but for a verification tool this is reasonable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three short, purposeful sentences. It front-loads the action and adds only essential context. No fluff, clear structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple verification tool with an output schema, the description covers purpose and behavior well. However, it fails to describe 3 of 4 parameters, leaving gaps in operational understanding. The presence of output schema mitigates the need to explain return values, but parameter semantics remain incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameters. It only explains 'iss' as the validated issuer; chain, iss_kind, and wallet_address are left to schema defaults and names, with no added semantic context. This leaves the agent guessing about expected values and meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get an advisory risk verdict for a validated MCP issuer', identifying the specific verb and resource. It distinguishes from siblings by focusing on issuer risk verdict, as opposed to export_audit_bundle or score_counterparty.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit placement guidance: 'Attach this at your MCP `iss` validation step' and clarifies its role: 'identity is your job, this adds risk.' It also notes advisory, non-blocking nature, guiding when to use. However, it doesn't explicitly contrast with sibling tools or state exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
AI agent execution safety via x402 micropayments: risk scoring, integrity, memory checks
External counterparty-risk checks and signed receipts for autonomous agents and machine payments.
1The trust layer for the x402 agent economy: verifiable agent identity, payment & audit.
Agent-native double-entry accounting ledger with x402 micropayments
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables autonomous agents to calculate deterministic profit and loss, attribute revenue and costs, and generate signed operational reports using x402 micropayments.MIT
- AlicenseNot gradedqualityCmaintenanceMulti-party escrow and settlement for autonomous agent transactions with x402 micropayments and dispute resolution on Base, Ethereum, or Solana.MIT
- AlicenseAqualityBmaintenanceBefore an AI agent pays an x402 endpoint, checks whether it's safe to pay: liveness, scam/anomaly scan (payTo hijack, bait-and-switch, honeypot), and on-chain receiver verification. ~70% of x402 endpoints are dead or scams.3MIT
- AlicenseAqualityAmaintenancex402-trust gives AI agents a "check before you pay" layer for the x402 ecosystem.13286MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct operation: exporting an audit bundle, scoring a counterparty, and verifying an issuer. There is no overlap in purpose or action, making tool selection unambiguous.
All tool names follow a consistent verb_noun pattern (export_audit_bundle, score_counterparty, verify_issuer). The naming convention is uniform and predictable.
With only 3 tools, the set is tightly scoped to the three core functions of the API. Each tool is necessary and earns its place, fitting within the ideal 3-15 tool range.
The tool set covers the complete lifecycle for the domain: scoring counterparties, verifying issuers, and exporting compliance-relevant audit data. No obvious gaps exist for the stated purpose of a risk/compliance MCP server.