FeedOracle Compliance MCP Server
Provides compliance and risk assessment tools for stablecoins issued by Circle, such as USDC, including MiCA status checks and issuer authorization verification.
Utilizes the Polygon network to anchor compliance evidence packs, providing blockchain-based cryptographic signatures and verifiable timestamps for AI agent decisions.
Leverages the XRP Ledger (XRPL) for anchoring evidence and maintaining an audit trail, ensuring data integrity and allowing for deterministic replay of compliance decisions.
FeedOracle — Compliance Evidence Infrastructure
Signed, verifiable evidence for AI-driven compliance decisions. MiCA · DORA · AMLR.
Figures below were verified against the canonical metrics source on 2026-07-22: feedoracle-metrics.json
Website · Docs · Trust · Pricing
What is FeedOracle?
FeedOracle is compliance-evidence infrastructure for regulated entities and their AI agents. It turns questions like "Is USDT compliant for trading in the EU under MiCA?" into signed, sourced, auditable answers instead of an LLM guess.
FeedOracle is the compliance layer of a larger oracle mesh (OracleNet, operated by sibling project ToolOracle); this repository is the FeedOracle-branded MCP server itself.
Related MCP server: AgentStamp
Who is it for?
Compliance and risk teams at banks, PSPs, and crypto/RWA firms who need MiCA/DORA/AMLR evidence they can hand to an auditor
AI agents and agent frameworks that need a machine-checkable "can I do this?" answer before executing a financial action
Developers building on MCP who want a real, live compliance data source rather than a toy example
What problem does it solve?
Regulatory questions — "is this token MiCA-authorized", "does this counterparty appear on a sanctions list", "is our DORA posture audit-ready" — are usually answered by a human trawling PDFs, or by an LLM guessing with no source. FeedOracle answers them from live regulatory registers and internal risk models, returns a signed evidence object (source, timestamp, confidence, hash), and lets you verify it independently.
Try it in 60 seconds
tools/list and ping are open on this endpoint — no signup required. Note: an anonymous tools/list call against this specific endpoint currently surfaces a smaller live subset (observed 2026-07-22: ~25 tools) — the full 549-tool count is the combined catalogue across FeedOracle's own oracles plus the shared mesh it draws on (see "What's actually live" below), not what a single anonymous call returns:
curl -s -X POST https://feedoracle.io/mcp/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ping","arguments":{}}}'Most compliance tools (e.g. mica_status) need a free API key. Register in the same call flow, no card required:
curl -s -X POST https://feedoracle.io/mcp/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kya_register","arguments":{"agent_name":"my-agent","agent_purpose":"compliance checks","owner_email":"you@example.com","owner_org":"Your Org"}}}'This returns an API key and a starting balance of free units. Note: this call creates a real registration and issues a secret API key. Store it securely and do not commit it.
MCP quickstart
claude mcp add --transport http feedoracle https://feedoracle.io/mcp/{
"mcpServers": {
"feedoracle": {
"url": "https://feedoracle.io/mcp/"
}
}
}Then ask your agent things like:
Is USDT compliant for trading in the EU under MiCA?
Run a DORA readiness check
Screen this counterparty for sanctions exposureMinimal examples
Python
import requests
resp = requests.post("https://feedoracle.io/mcp/", json={
"jsonrpc": "2.0", "id": 1, "method": "tools/call",
"params": {"name": "ping", "arguments": {}}
})
print(resp.json())Node
const resp = await fetch("https://feedoracle.io/mcp/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
jsonrpc: "2.0", id: 1, method: "tools/call",
params: { name: "ping", arguments: {} }
})
});
console.log(await resp.json());More runnable examples in examples/, including a full python_client.py and ready-made Claude Desktop / Cursor configs.
What's actually live
FeedOracle's own primary oracles (verified against live metrics, 2026-07-22):
Server | Tools | Scope |
AmpelOracle | 50 | DORA — 26 tracked control areas, traffic-light scoring, board reports |
MiCAOracle | 24 | MiCA stablecoin authorization, peg, reserves |
FeedOracle Compliance | 29 | Unified preflight, evidence packs, audit trail |
ReserveOracle | 11 | MiCA Art. 36 reserve quality, attestation verification |
RiskOracle | 7 | Stablecoin + RWA operational risk scoring |
PredictionGuard | 28 | Hallucination-layer policy enforcement for compliance agents |
Beyond these 6 FeedOracle-branded servers (149 tools), FeedOracle also draws on a shared compliance-infrastructure mesh (OracleNet) of additional oracles covering DORA operational, security/runtime, and blockchain-risk categories — same product, broader shared infrastructure. Combined, mesh-wide: 40 registered oracles · 39 online · 549 catalogued tools · 17 data sources (as of 2026-07-22, always current at feedoracle-metrics.json). Full mesh detail lives in ToolOracle/oraclenet — not duplicated here so it can't drift out of sync.
A note on these numbers, since they describe different things: "oracle" here means a registered mesh node, not necessarily a single MCP server process — FeedOracle's own 6 oracles above map 1:1 to servers, but that isn't guaranteed mesh-wide. "549 tools" is the mesh-wide catalogue total; it is not what a single anonymous tools/list call against this endpoint returns (see Quickstart above). Use feedoracle-metrics.json as the source of truth rather than any number in this README if they ever disagree.
Free vs. paid
tools/listandpingare open, no key requiredkya_register(free, no card) issues an API key with a starting balance of free welcome unitsBeyond the free allowance: pay-as-you-go via Stripe (card/SEPA) or the x402 protocol (USDC on Base, no signup, no subscription)
Current per-unit pricing is returned live in each tool's
402 payment_requiredresponse rather than reproduced here, so it can't go staleThere is no fixed monthly subscription bundle at this time; see feedoracle.io/pricing.html for current access options
Evidence & trust model
Supported evidence responses include signed receipt fields — source, timestamp, confidence, and a content hash. Verify the signature and anchor fields returned by each individual tool response rather than assuming a fixed set applies to every tool; not all tools are evidence-bearing in the same way (e.g. ping returns a lighter operational receipt).
curl -s https://feedoracle.io/.well-known/jwks.json # public keys to verify signaturesLive verification on 2026-07-22 confirmed ES256K and ML-DSA-65 signatures plus NIST and CURBy randomness-beacon anchors on the tested response. Coverage can vary by tool and response type; verify the fields returned with each individual result. Earlier versions of this document described an on-chain escrow-based settlement mechanism on Base; that mechanism is now retired and not accepting new activity — it has not been re-verified as accurate for the period it originally described, so no historical settlement figures are repeated here. For current anchor and verification status, see Trust.
Full docs: docs/TRUST_POLICY.md · docs/AUDIT_TRAIL.md · docs/KYA.md · docs/BILLING.md · docs/WORKFLOWS.md
On evidence vs. verdicts: FeedOracle returns evidence indicators for human/agent review — source, confidence, and status — not a legal compliance verdict. "PASS" means no adverse indicators were found in the checked sources, not a guarantee of compliance.
Security & responsible use
Report vulnerabilities privately (see repository Security tab) — please don't open a public issue for security-sensitive findings
Never commit API keys, wallet credentials, or
.envfiles — see.gitignoreThis server executes real, priced actions (registration, paid tool calls); review
docs/BILLING.mdbefore wiring up autonomous agents
Contributing
Issues and PRs are welcome — especially for examples/, additional client integrations, and documentation fixes. There's no CONTRIBUTING.md yet; for anything beyond a small fix, please open an issue first so we can align on scope before you invest the time.
License
MIT — see LICENSE.
Roadmap
Live: MCP server, MiCA/DORA/AMLR tool set, x402 micropayments, signed evidence objects, KYA self-registration
Beta: mesh-wide routing improvements across OracleNet
Planned: broader regulatory framework coverage (CSRD, NIS2) — tracked in CHANGELOG.md
DORA has applied since 17 January 2025. MiCA is fully applicable; the EU-wide CASP transitional period ended no later than 1 July 2026.
🇩🇪 Built in Germany · 🔐 Signed evidence · 🧾 Verifiable receipts
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 Servers
- Flicense-qualityDmaintenanceMacro economic intelligence MCP — 13 tools powered by 86 FRED series + ECB data covering Fed rates, inflation (CPI/PCE), yield curve, GDP, recession probability, and regime classification. Every response ES256K signed.Last updated1
- AlicenseAqualityDmaintenanceTrust intelligence MCP server for AI agents. 19 tools for identity stamps, reputation scoring (0-100), agent registry, forensic audit trails, ERC-8004 bridge, and A2A passports via x402 USDC micropayments.Last updated191Apache 2.0
- Alicense-qualityAmaintenance62 real-time data tools for AI agents via MCP. Finance, crypto, FMCSA, sanctions, courts, weather, vehicles, cybersecurity. One bearer token, one bill. Free tier available.Last updatedMIT
- Alicense-qualityBmaintenanceMCP server for compliance automation of AI agents, enabling EU AI Act compliance, verifiable credentials, and decentralized identity management with 47 tools across 9 modules.Last updated17Apache 2.0
Related MCP Connectors
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
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/feedoracle/feedoracle-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server