Limitguard
LimitGuard MCP Server
Trust Intelligence for AI agents. Entity verification, sanctions screening, and risk scoring via the Model Context Protocol.
Server URL: https://api.limitguard.ai/mcp
Transport: Streamable HTTP (POST)
Auth: API key (Bearer), plus an x402 micropayment per call on the free tier
Tools
tools/list is public — connect and read it without any credential. These are
the names it returns, and the names tools/call accepts:
Tool | Description | Inputs |
| Full entity trust check — KVK/CBE registry, sanctions, domain, risk scoring |
|
| Verify AI agent identity and reputation before inter-agent transactions |
|
| Get entity trust score (0-100) with cluster assignment and recommendation |
|
| Verify blockchain wallet address, on-chain activity and risk flags |
|
| Quick risk score for entity name + country pair |
|
Related MCP server: Concept-4 Compliance Engine
Pricing
All tools are priced via x402 micropayments (USDC on Base or Solana):
Endpoint | Price |
Entity Check | $0.85 |
Risk Score | $0.65 |
Check Agent | $0.10 |
Trust Score | $0.10 |
Verify Wallet | $0.10 |
Authentication
Two things gate a tools/call, in this order:
An API key, as
Authorization: Bearer <key>. Without one every call comes backAuthentication required. Provide API key via Authorization: Bearer <lg_live_...> header.Get a free one — no payment, no card:curl -X POST https://api.limitguard.ai/v1/keys/create \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "tier": "sandbox"}'Payment, on the free and sandbox tiers only. Send the x402 proof as
PAYMENT-SIGNATURE(x402 v2) orX-PAYMENT(v1), alongside the Bearer key. A paid subscription (indie and up) covers usage and needs no per-call payment.A sandbox key does not lift the payment requirement on this transport. It does on the REST mirrors under
/v1/mcp/*(sent asX-API-Key, not Bearer), which is the cheapest way to try the tools before wiring up payment.
Full x402 API (direct HTTP)
The 5 tools above are what the MCP server exposes over the Model Context Protocol. Clients that
integrate directly over HTTP — instead of through an MCP client — can reach 18 x402-priced
endpoints on https://api.limitguard.ai: the 13 REST endpoints below, plus the MCP tools' own
/v1/mcp/* paths. All 18 are published in
/.well-known/x402.json; only the 5 tools above
are listed by /.well-known/mcp.json.
Most of the REST endpoints are capabilities the MCP tools do not expose, but two are the same
check reached over plain HTTP: /v1/entity/check behind check_entity — the manifest describes
/v1/mcp/check-entity as "same as /v1/entity/check with MCP-native interface" — and
/v1/risk/score behind risk_score, at the same $0.65.
Payment works the same way throughout: USDC on Base or Solana, pay-per-call. The 9 data endpoints
below need no API key at all. The 4 /v1/keys/upgrade/* endpoints also take payment without one,
but they act on an API key you already hold — see API key tiers.
Trust intelligence
Endpoint | Method | Price | Description |
| POST | $0.85 | Full entity trust check across every verification layer — KVK/CBE registry, OpenSanctions, country risk (CPI/FATF), domain WHOIS, IBAN validation, EU VAT/VIES, wallet screening, and x402 payment history. Returns trust score 0-100 with cluster and recommendation. |
| POST | $0.65 | Quick risk score (0-100) for entity name + country. Lightweight check without the full data source scan. |
Reputation management
Endpoint | Method | Price | Description |
| POST | $0.65 | Reputation scoring with Bayesian trust decay. Tracks entity trust over time with confidence intervals. |
| GET | $0.10 | Reputation history for an entity. |
Wallet services
Endpoint | Method | Price | Description |
| GET | $0.10 | ERC-8004 agent wallet balance — USDC balance and transaction count for AI agent wallets. |
Regulatory compliance
Endpoint | Method | Price | Description |
| POST | $1.50 | Know Your Business verification — company registration, sanctions screening, VAT/VIES, and domain analysis in one call. |
| GET | $0.10 | EU regulatory change alerts filtered by jurisdiction and severity. Covers GDPR, EU AI Act, MiCA, and AMLD6. |
| GET | $0.50 | Compliance report for an entity. |
| GET | $0.10 | Compliance readiness check for an entity. |
MCP tool paths (direct HTTP)
The 5 MCP tools are also reachable over plain HTTP at their own x402-priced paths — same capabilities and prices as the Tools table above, for clients that pay per call without opening an MCP session.
Endpoint | Method | Price | MCP tool |
| POST | $0.85 |
|
| POST | $0.10 |
|
| POST | $0.10 |
|
| GET | $0.10 |
|
| POST | $0.65 |
|
API key tiers
LimitGuard accepts two forms of payment: x402 per call — which needs no API key, as everywhere
else in this README — or an API key carrying a monthly call allowance. A base key is free and
self-service: POST /v1/keys/create with an email address, no payment and no existing key needed.
The endpoints below take a one-time x402 payment to raise that key's monthly allowance.
Endpoint | Method | Price | Tier | Allowance |
| GET | $29 | Indie | 1,000 calls/mo |
| GET | $99 | Starter | 10,000 calls/mo |
| GET | $299 | Growth | 50,000 calls/mo |
| GET | $999 | Pro | 250,000 calls/mo |
Prices and descriptions above mirror the live x402 manifest as of 2026-09-05. The manifest is the source of truth — fetch it if you need the current schema for any endpoint.
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"limitguard": {
"type": "url",
"url": "https://api.limitguard.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_LIMITGUARD_KEY"
}
}
}
}Cursor
Add to MCP settings:
{
"limitguard": {
"type": "url",
"url": "https://api.limitguard.ai/mcp",
"headers": {
"Authorization": "Bearer YOUR_LIMITGUARD_KEY"
}
}
}Smithery
npx -y @smithery/cli install @limitguard/trust-intelligenceAny MCP Client
Connect to https://api.limitguard.ai/mcp using Streamable HTTP transport (POST),
sending Authorization: Bearer <key> on every tools/call.
Discovery Endpoints
Endpoint | URL |
MCP Tools | |
x402 Pricing | |
Health |
Use Cases
KYC/KYB Automation — AI agents verify business entities before transactions
Sanctions Screening — Check entities against OpenSanctions watchlists
Agent-to-Agent Trust — Verify counterparty agent reputation before collaboration
Wallet Verification — Check blockchain wallet risk before on-chain transactions
Due Diligence — Automated entity research with trust scoring
Security
HTTPS with TLS 1.3
x402 payment protocol for per-call billing (no stored payment credentials)
GDPR-compliant (EU-hosted, data minimization)
All tools are read-only (no data modification)
Rate limited per payment (abuse-proof)
Links
Website: limitguard.ai
Status: status.limitguard.ai
MCP Registry: ai.limitguard.api/trust-intelligence
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Sanctions, PEP, watchlist, recall, business, and contract screening. Free tier, no auth required.
OFAC and global sanctions screening: crypto addresses, emails, websites, IDs, countries, VPN, geo
Hosted MCP server for real-world data: business registries, sanctions, companies, domains, crypto.
Entity verification, sanctions screening, and trust scoring for AI agents.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for sanctions screening and PEP checks via OpenSanctions API. Search entities, match against 320+ sanctions lists, and run compound compliance investigations with AI agents.657MIT
- AlicenseBqualityBmaintenanceAutonomous M2M compliance and trust APIs for AI agents (KYB, OFAC, VAT, Sanctions checking).5MIT
- FlicenseNot gradedqualityBmaintenanceScreens names and companies against OFAC, EU, UK, and UN sanctions lists with fuzzy-match scores, supporting bulk lookups for AML/KYC checks. Data is sourced directly from official government lists and cached for fast repeat checks.-
- AlicenseNot gradedqualityAmaintenanceScreen names against consolidated OFAC, EU, UK, and UN sanctions lists and resolve legal entities via GLEIF, with offline fuzzy matching.2841Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jwconsultancyteam/limitguard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server