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
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 3 of 3 tools scored.
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.
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 | ||
Tool Definition Quality
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 | ||
Tool Definition Quality
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 | ||
Tool Definition Quality
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- Alicense-qualityAmaintenanceEnables autonomous agents to calculate deterministic profit and loss, attribute revenue and costs, and generate signed operational reports using x402 micropayments.MIT
- Alicense-qualityCmaintenanceMulti-party escrow and settlement for autonomous agent transactions with x402 micropayments and dispute resolution on Base, Ethereum, or Solana.MIT
- AlicenseAqualityAmaintenanceBefore 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.12242MIT
Your Connectors
Sign in to create a connector for this server.