CAT
/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

Cross AI Tools

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
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

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 →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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 →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM Tools
Registryactive
TransportSSE
UpdatedApr 12, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f