streamable-httpupdated 1mo ago
Live hosted MCP endpoint: https://watchtower-api.com/mcp ยท Docs: https://watchtower-api.com/docs ยท OpenAPI: https://watchtower-api.com/openapi.json
What can you do with sanctions screening?
Watchtower โ Compliance & Data-Integrity MCP Server for AI Agents
Live hosted MCP endpoint: https://watchtower-api.com/mcp ยท Docs: https://watchtower-api.com/docs ยท OpenAPI: https://watchtower-api.com/openapi.json
Watchtower is a deterministic compliance & data-integrity API for AI agents. Point any MCP client at the hosted endpoint and your agent gets tools for sanctions screening, KYB, identifier validation, jurisdiction risk, PII/secret detection, and LEI resolution โ pay per call with x402 (USDC on Base, no signup) or a prepaid API key.
This repo is the public home for the hosted Watchtower MCP server. There's nothing to install โ connect to the remote endpoint below.
Connect
{
"mcpServers": {
"watchtower": { "url": "https://watchtower-api.com/mcp" }
}
}
Streamable-HTTP MCP, stateless โ no auth handshake. Paid tools take an api_key argument (create one for free with the create_api_key tool, which includes trial credit) or you can pay per call via x402.
Tools
| Tool | What it does | Price |
|---|---|---|
screen_name |
Screen a person/company/vessel against 10 sanctions & exclusion lists (OFAC SDN+Consolidated, UN, EU, UK OFSI, Canada, Australia, France, Switzerland, US export-control, US SAM exclusions โ ~229k parties, refreshed daily). Deterministic, typo-tolerant, versioned. | $0.02 |
kyb_check |
One-call KYB: company name โ its official GLEIF legal identity and its sanctions/exclusions screening. | $0.02 |
screen_crypto_address |
Check a crypto address against OFAC's sanctioned-address list. | $0.01 |
validate_identifier |
Validate/normalize IBAN, LEI, ISIN, BIC, VAT, card (Luhn), Ethereum & Bitcoin addresses, email, and more โ by checksum. | $0.005 |
check_jurisdiction |
FATF (black + grey) and EU high-risk-country AML classification, dated & sourced. | $0.005 |
scan_text |
Detect & redact PII and secrets (API keys, private keys, tokens, emails, cards, IBANs, SSNs) in text. | $0.005 |
resolve_lei / search_lei_by_name |
Resolve or search a Legal Entity Identifier via GLEIF (legal name, status, jurisdiction). | $0.01 |
create_watch |
Monitor a name; webhook fires when its sanctions match set changes. | $0.01/day |
get_screening_info |
List versions, source freshness, entry counts, pricing. | Free |
Why Watchtower
- Deterministic & auditable โ same query + same list snapshot โ byte-identical result, stamped with a content-hash and algorithm version, plus point-in-time (
as_of) screening for "what did the list say when we onboarded them?" - Broad, authoritative coverage โ 10 official government lists, ~229,000 parties, refreshed daily.
- Built for agents โ pay-per-call via x402 (USDC on Base, no account) or MCP; no minimums, no seats.
Also available as REST + x402
Everything above is also a REST API. Pay per call in USDC via x402 with no signup:
import { wrapFetchWithPayment, x402Client } from '@x402/fetch';
import { ExactEvmScheme } from '@x402/evm';
const pay = wrapFetchWithPayment(fetch,
new x402Client().register('eip155:8453', new ExactEvmScheme(signer)));
await pay('https://watchtower-api.com/v1/screen', { method: 'POST',
headers: { 'content-type': 'application/json' }, body: JSON.stringify({ name: 'Vladimir Putin' }) });
Full reference: https://watchtower-api.com/docs ยท machine-readable: /llms.txt, /openapi.json, /.well-known/x402.json
Informational screening against public sanctions, export-control & exclusion lists; LEI/entity data via GLEIF. Not legal advice.
Install
Add sanctions screening to your client. Pick the one you use.
claude mcp add --transport http sanctions-screening https://watchtower-api.com/mcpcodex mcp add sanctions-screening --url https://watchtower-api.com/mcp{
"mcpServers": {
"sanctions-screening": {
"url": "https://watchtower-api.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"sanctions-screening": {
"type": "http",
"url": "https://watchtower-api.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"sanctions-screening": {
"url": "https://watchtower-api.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"sanctions-screening": {
"serverUrl": "https://watchtower-api.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
8 tools
sanctions screening exposes 8 tools to a connected agent.
- screen_name
- Screen a person/company/vessel against 10 sanctions & exclusion lists (OFAC SDN+Consolidated, UN, EU, UK OFSI, Canada, Australia, France, Switzerland, US export-control, US SAM exclusions โ ~229k parties, refreshed daily). Deterministic, typo-tolerant, versioned.
- kyb_check
- **One-call KYB:** company name โ its official GLEIF legal identity **and** its sanctions/exclusions screening.
- screen_crypto_address
- Check a crypto address against OFAC's sanctioned-address list.
- validate_identifier
- Validate/normalize IBAN, LEI, ISIN, BIC, VAT, card (Luhn), Ethereum & Bitcoin addresses, email, and more โ by checksum.
- check_jurisdiction
- FATF (black + grey) and EU high-risk-country AML classification, dated & sourced.
- scan_text
- Detect & redact PII and secrets (API keys, private keys, tokens, emails, cards, IBANs, SSNs) in text.
- create_watch
- Monitor a name; webhook fires when its sanctions match set changes.
- get_screening_info
- List versions, source freshness, entry counts, pricing.
Score
62 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 46 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Jul 17, 2026 |
| 1.0.0 | Jul 16, 2026 |