Skip to main content
Glama

AgentEconomy Compliance API

Server Details

Paid KYC, AML, and regulatory risk assessment over MCP via x402 USDC micropayments on Base.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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 4 of 4 tools scored.

Server CoherenceA
Disambiguation4/5

The tools are mostly distinct: aml_screen targets entity screening with fuzzy matching, kyc_check focuses on identity verification with PEP data, risk_report aggregates both, and wallet_screen handles blockchain addresses. However, aml_screen and kyc_check both involve sanctions list checks and have overlapping outputs (risk score, sanctions matches), which could cause initial selection confusion.

Naming Consistency3/5

Tool names mix verb styles: 'aml_screen' and 'wallet_screen' use the verb 'screen', while 'kyc_check' uses 'check' and 'risk_report' uses 'report'. The pattern is not uniform (e.g., one could expect 'screen_aml' or 'report_risk'), but the names are still readable and indicate their respective functions.

Tool Count5/5

With 4 tools, the server is well-scoped for a compliance API. Each tool covers a distinct aspect (AML screening, KYC checks, holistic risk reports, wallet screening) without unnecessary bloat or missing core functionality.

Completeness4/5

The tool set covers the primary compliance workflows: sanctions screening, identity verification, combined risk assessment, and crypto wallet risk analysis. Minor gaps exist, such as separate PEP-only screening or transaction monitoring, but the core lifecycle for compliance checks is well represented.

Available Tools

4 tools
aml_screenA
Destructive
Inspect

Screen an entity against Anti-Money Laundering (AML) watchlists including OFAC SDN and UN sanctions. Returns risk level, risk score, recommendation (approve/review/reject), and sanctions match details. Uses Jaro-Winkler fuzzy name matching for accurate detection. Cost: $0.05 USDC per screening. Caller must supply a signed X-PAYMENT header on the MCP HTTP request.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountNoTransaction amount
currencyNoCurrency code (e.g. USDC, ETH, BTC)
entity_nameYesFull legal name of the person or entity to screen
transaction_idNoTransaction identifier for audit trail
wallet_addressNoBlockchain wallet address to check
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond annotations: it mentions the Jaro-Winkler fuzzy matching algorithm, the exact cost, and the X-PAYMENT authentication requirement. It also states the return fields. It does not elaborate on the destructiveHint, leaving that annotation unexplained, but the side-effecting payment behavior makes the annotations non-contradictory.

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 four sentences, front-loaded with purpose, then returns, algorithm, cost, and authentication. Every sentence adds critical information with no fluff or repetition of the schema.

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 absence of an output schema, the description adequately lists the key return fields, and it covers prerequisites (payment header) and cost. It does not address error handling or failover scenarios, but for a screening tool this is reasonably complete.

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?

Schema coverage is 100%, so the parameter descriptions already document every field. The description adds modest value by indicating that fuzzy matching applies to entity names and that the tool returns sanctions match details, but it does not enrich parameter semantics meaningfully.

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 states a specific action ('Screen an entity against AML watchlists'), names concrete resources (OFAC SDN, UN sanctions), and lists expected return values (risk level, risk score, recommendation, sanctions match details). This clearly differentiates from sibling tools like kyc_check or risk_report by focusing on AML-specific watchlists and output.

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 clearly communicates when to use the tool: when AML watchlist screening is needed. It also provides necessary usage prerequisites such as the signed X-PAYMENT header and cost per screening. However, it does not explicitly contrast with sibling tools or state exclusions, so it stops short of full alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

kyc_checkA
Destructive
Inspect

Run a KYC (Know Your Customer) identity verification check against OFAC and UN sanctions lists. Returns verification status, risk score (0-100), and sanctions/PEP match results. Powered by real government sanctions data (OFAC SDN + UN Security Council). Cost: $0.01 USDC per check. Caller must supply a signed X-PAYMENT header on the MCP HTTP request.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoISO 3166-1 alpha-2 country code (e.g. US, GB, ZA, IR)
entity_idNoNational ID, passport number, or company registration number
entity_nameYesFull legal name of the person or entity to verify
wallet_addressNoBlockchain wallet address (e.g. 0x...)
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations provide readOnlyHint=false and destructiveHint=true, so the description doesn't need to restate those. It adds meaningful operational details: cost per check, signed X-PAYMENT header requirement, and data source (OFAC SDN + UN Security Council). It also discloses return fields. This goes beyond the annotations, though it doesn't elaborate on the destructive side effect implied by the annotation.

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?

Description is compact and front-loaded with the core purpose, followed by return info, data source, and cost/auth details. Every sentence provides essential information without redundancy. No fluff or filler.

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?

For a tool with moderate complexity and no output schema, the description covers the main behavior, outputs (verification status, risk score, matches), and operational requirements (cost, header). It lacks guidance on parameter combinations or when to use this vs sibling tools, which is a notable gap but not critical given the schema and annotations.

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?

Schema coverage is 100% with all four parameters described. The description doesn't add extra meaning about parameter formats or how they interrelate (e.g., wallet_address vs entity_id). Since the schema already handles parameter semantics, the baseline score of 3 applies—no additional value from the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description states a specific verb ('Run') and resource ('KYC identity verification check') with clear targets (OFAC and UN sanctions lists). It also mentions returns like risk score and sanctions/PEP matches, which differentiates from generic screens. However, it doesn't explicitly contrast with sibling tools like aml_screen or wallet_screen, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives such as aml_screen or wallet_screen. It mentions prerequisites (payment header) but not when this tool is preferred or when it should be avoided. The description implies a KYC use case but lacks explicit context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

risk_reportA
Destructive
Inspect

Generate a comprehensive regulatory risk assessment report combining KYC verification, AML sanctions screening, and multi-jurisdiction risk analysis. Returns overall risk level, risk score, sanctions results, jurisdiction-specific risk factors, and recommended compliance actions. Cost: $0.10 USDC per report. Caller must supply a signed X-PAYMENT header on the MCP HTTP request.

ParametersJSON Schema
NameRequiredDescriptionDefault
entity_nameYesFull legal name of the person or entity
entity_typeNoEntity type: 'individual' or 'company'
wallet_addressNoBlockchain wallet address
include_transaction_analysisNoInclude on-chain transaction analysis in the report
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds significant context beyond annotations: cost ($0.10 USDC), payment header requirement, and a summary of return fields. While annotations already flag destructive/readOnly/idempotent hints, the description supplements with operational and cost details.

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?

Two sentences, front-loaded with the main verb and resource. Every sentence is purposeful: first states purpose, second covers return values, cost, and payment. No redundancy or filler.

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?

For a complex tool with no output schema, the description covers purpose, return values, cost, and payment. It could benefit from explicit guidance on when to use vs siblings, but annotations and schema fill some gaps. Overall this is a complete and useful description.

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?

Schema description coverage is 100%, so parameters are already documented. The description references the combination of KYC/AML/jurisdiction analysis which maps to entity_type, wallet_address, and include_transaction_analysis, but does not add new syntax or format details beyond the schema.

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 explicitly states the tool's function: generate a comprehensive regulatory risk assessment report combining KYC, AML, and multi-jurisdiction analysis. This clearly distinguishes it from the sibling tools (aml_screen, kyc_check, wallet_screen) which focus on individual components.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for a comprehensive risk assessment needing KYC+AML+multi-jurisdiction, but does not explicitly state when to choose this over individual sibling tools or provide exclusion criteria. No alternatives are named, so guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

wallet_screenA
Destructive
Inspect

Screen a blockchain wallet address for compliance risk. Combines a direct OFAC sanctioned-address check with on-chain exposure analysis across Ethereum and Base — flagging sanctioned counterparties the wallet transacted with and known mixer (e.g. Tornado Cash) exposure. Returns risk level, score (0-100), and recommendation (approve/review/reject). No entity name required. Cost: $0.05 USDC per screening. Caller must supply a signed X-PAYMENT header on the MCP HTTP request.

ParametersJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesEVM wallet address to screen (0x + 40 hex chars)
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations, it discloses a $0.05 USDC cost, the required X-PAYMENT header, return values (risk level, score, recommendation), and the specific analysis scope. It does not fully elaborate on the destructiveHint annotation's meaning, but the payment side-effect is a critical behavioral disclosure.

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?

Four concise sentences front-load the core purpose, then pack in essential operational details (cost, payment header, outputs). There is no redundant phrasing, and every sentence earns its place.

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?

The description explains inputs, outputs, cost, authentication requirement, and analysis dimensions, which is substantial for a tool without an output schema. It lacks interpretation guidance for risk scores, but overall it gives the agent enough context to invoke and use the tool correctly.

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 single parameter wallet_address is fully described in the schema with format details (0x + 40 hex chars). The description adds no new parameter-specific information, so the schema carries the burden; baseline 3 is appropriate.

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 opens with a specific verb+resource pair: 'Screen a blockchain wallet address for compliance risk.' It then details the unique combination of OFAC check and on-chain exposure analysis across Ethereum and Base, clearly distinguishing it from siblings like kyc_check or aml_screen.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by explaining what the tool does and noting 'No entity name required,' but it does not explicitly state when to use this over alternative tools or mention any exclusions. Sibling differentiation is implicit rather than direct.

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

  • A
    license
    -
    quality
    C
    maintenance
    MCP server providing EU compliance APIs for VAT validation, sanctions screening, counterparty checks, and invoice extraction. Enables AI agents to make pay-per-call requests settled in USDC on Base via x402, with no account or API key required.
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    Paid MCP server for EU tools: validate VAT numbers via VIES and get ECB euro FX rates, with per-call USDC payments on Base via the x402 protocol.
  • F
    license
    -
    quality
    D
    maintenance
    56 pay-per-call MCP endpoints for AI agents. Market signals, macro economics, crypto/DeFi, geopolitical intelligence, SEC filings, GitHub velocity, sanctions screening. USDC on Base Mainnet via x402.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources