CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
feedoracle avatar

FeedOracle Compliance Agent

feedoracle/feedoracle-managed-agents
SSEregistry active
Summary

Built for running autonomous compliance agents in Anthropic's Managed Agents platform. Gives you 79 tools across five MCP servers: MiCA compliance verdicts with signed evidence packs, 7-signal stablecoin risk scoring, macro regime detection from Fed signals and yield curves, KYA identity and audit logging for agent governance, and Bitcoin network data. You create an agent definition pointing at feedoracle.io and tooloracle.io SSE endpoints, then ask questions like "Is USDC MiCA compliant?" and get back structured verdicts with cryptographic evidence bundles. No API keys required. Reach for this when you need EU stablecoin compliance checks, portfolio risk analysis, or auditable decision trails for financial agents running in production.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

FeedOracle × Claude Managed Agents

Turn compliance questions into signed evidence — with one API call.

FeedOracle provides the compliance evidence layer for Claude's new Managed Agents platform. Connect 5 MCP servers. Get MiCA compliance verdicts, stablecoin risk scores, macro regime signals, and auditable governance — all running autonomously in Anthropic's managed infrastructure.

What you get

MCP ServerEndpointToolsWhat it does
Compliancefeedoracle.io/mcp/26MiCA status, evidence packs, peg deviation, reserves, compliance pre-flight
Riskfeedoracle.io/mcp/risk/sse137-signal stablecoin risk scoring, custody risk, DEX liquidity
Macrofeedoracle.io/mcp/macro/sse13Macro regime, Fed watch, yield curve, VIX, recession probability
AgentGuardfeedoracle.io/guard/mcp/17Audit logging, KYA identity, policy enforcement, secret detection
Bitcointooloracle.io/btc/mcp/10BTC price, blocks, transactions, mempool, fees, halving

Total: 79 tools available to your agent. No API keys needed.

Quickstart (bash)

export ANTHROPIC_API_KEY="sk-ant-..."
bash quickstart.sh

Quickstart (Python)

pip install anthropic httpx
export ANTHROPIC_API_KEY="sk-ant-..."
python feedoracle_agent.py

How it works

Your App                 Anthropic Cloud              FeedOracle
   │                          │                           │
   ├─ Create Agent ──────────►│                           │
   │  (5 MCP servers)         │                           │
   │                          │                           │
   ├─ Start Session ─────────►│                           │
   │                          ├─ Provision container      │
   │                          │                           │
   ├─ "Is USDC MiCA          │                           │
   │   compliant?" ──────────►│                           │
   │                          ├─ mica_status(USDC) ──────►│
   │                          │◄── {status: compliant} ───┤
   │                          │                           │
   │                          ├─ peg_deviation(USDC) ────►│
   │                          │◄── {deviation: 0.0003} ───┤
   │                          │                           │
   │                          ├─ evidence_bundle(USDC) ──►│
   │                          │◄── {pack_id, signature} ──┤
   │                          │                           │
   │                          ├─ audit_log(decision) ────►│
   │                          │◄── {logged, chain_id} ────┤
   │                          │                           │
   │◄── Signed verdict ───────┤                           │
   │    with evidence pack    │                           │

Agent Definition (curl)

curl https://api.anthropic.com/v1/agents \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "anthropic-beta: managed-agents-2026-04-01" \
  -H "content-type: application/json" \
  -d '{
    "name": "FeedOracle Compliance Agent",
    "model": "claude-sonnet-4-6",
    "system": "You are the FeedOracle Compliance Agent...",
    "tools": [{"type": "agent_toolset_20260401"}],
    "mcp_servers": [
      {"type": "url", "url": "https://feedoracle.io/mcp/", "name": "feedoracle-compliance"},
      {"type": "url", "url": "https://feedoracle.io/mcp/risk/sse", "name": "feedoracle-risk"},
      {"type": "url", "url": "https://feedoracle.io/mcp/macro/sse", "name": "feedoracle-macro"},
      {"type": "url", "url": "https://feedoracle.io/guard/mcp/", "name": "feedoracle-agentguard"},
      {"type": "url", "url": "https://tooloracle.io/btc/mcp/", "name": "tooloracle-btc"}
    ]
  }'

Example queries

MiCA Compliance Check:

"Run a full MiCA compliance pre-flight for USDC. Generate a signed evidence pack."

Macro Regime Detection:

"What is the current macro regime? Should my trading agent be risk-on or risk-off?"

Stablecoin Portfolio Scan:

"Compare risk scores of USDC, USDT, DAI, RLUSD. Rank by MiCA suitability for an EU fund."

Agent Governance:

"Register this agent via KYA, then audit-log a compliance decision for USDT with full evidence chain."

Adding more MCP servers

FeedOracle/ToolOracle operates 85+ MCP servers with 860+ tools. Add any of these to your agent:

{"type": "url", "url": "https://feedoracle.io/mcp/macro/sse", "name": "macro"}
{"type": "url", "url": "https://tooloracle.io/sol/mcp/", "name": "solana"}
{"type": "url", "url": "https://tooloracle.io/eth/mcp/", "name": "ethereum"}
{"type": "url", "url": "https://tooloracle.io/btc/mcp/", "name": "bitcoin"}
{"type": "url", "url": "https://tooloracle.io/arb/mcp/", "name": "arbitrum"}
{"type": "url", "url": "https://tooloracle.io/base/mcp/", "name": "base"}
{"type": "url", "url": "https://tooloracle.io/sui/mcp/", "name": "sui"}
{"type": "url", "url": "https://tooloracle.io/ton/mcp/", "name": "ton"}
{"type": "url", "url": "https://tooloracle.io/hedera/mcp/", "name": "hedera"}
{"type": "url", "url": "https://feedoracle.io/flight/mcp/", "name": "flights"}
{"type": "url", "url": "https://feedoracle.io/hotel/mcp/", "name": "hotels"}
{"type": "url", "url": "https://feedoracle.io/jobs/mcp/", "name": "jobs"}
{"type": "url", "url": "https://feedoracle.io/shop/mcp/", "name": "shopping"}
{"type": "url", "url": "https://feedoracle.io/news/mcp/", "name": "news"}

Full catalog: feedoracle.io | tooloracle.io

Cost

ComponentPrice
Managed Agents runtime$0.08 / session hour
Claude Sonnet 4.6 tokensStandard API pricing
FeedOracle MCP serversFree (no API key needed)

Architecture

  • Agent → Reusable config (model + prompt + tools + MCP servers)
  • Environment → Container with network access to FeedOracle endpoints
  • Session → Running instance, maintains state across tool calls
  • Events → SSE stream of agent actions, tool calls, and results

Links

  • FeedOracle — Compliance evidence infrastructure
  • ToolOracle — Generalist data oracle marketplace
  • Claude Managed Agents Docs
  • MCP Protocol

License

MIT — Built by FeedOracle Technologies

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
AI & LLM Tools
Registryactive
TransportSSE
UpdatedApr 12, 2026
View on GitHub

More from feedoracle

  • FeedOracle Stablecoin Risk
  • Feedoracle Macro Mcp1

Related AI & LLM Tools MCP Servers

View all →
a0985344368-glitch avatar
TSUNG AI Research & Analysis

io.github.a0985344368-glitch/tsung-ai

Multi-LLM AI Research & Analysis — smart routing, consensus analysis, due diligence reports
a2cr avatar
A2CR

io.github.a2cr/a2cr-mcp

Save WorkBaton checkpoints and WorkStash notes for AI agent handoffs.
abcxz avatar
Conviction Mcp

io.github.abcxz/conviction-mcp

The arena where AI agents compete for real returns. Prompt a strategy.
abhinavala avatar
Context Cloud

io.github.abhinavala/context-cloud

Persistent AI memory with shared team workspaces, typed knowledge chunks, and cross-tool support.
pentagonal-ai avatar
Pentagonal Mcp

io.github.achilles1089/pentagonal-mcp

AI smart contract forge — 8-agent security audits, generation, and compilation across 8 chains
agentanycast avatar
AgentAnycast

io.github.agentanycast/agentanycast

P2P runtime for A2A protocol. Encrypted agent communication with zero-config NAT traversal.