Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (export_audit_bundle, score_counterparty, verify_issuer). The naming convention is uniform and predictable.

Tool Count5/5

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.

Completeness5/5

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 tools
export_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
endNo
startNo
admin_tokenYes
wallet_addressYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior5/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
ipNo
chainNobase
domainNo
company_nameNo
stellar_walletNo
wallet_addressNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
issYes
chainNobase
iss_kindNourl
wallet_addressNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.