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
tooloracle avatar

Memoryoracle

tooloracle/memoryoracle
HTTPregistry active
Summary

You'd reach for this when you need persistent memory across agent sessions. It bundles vector storage for semantic search, recall mechanisms to retrieve past context, summarization to compress conversation history, and redaction tools to scrub sensitive data. The ten tools cover the full lifecycle of agent memory management, from storing embeddings to pulling relevant context back when needed. Useful if you're building agents that need to remember previous interactions or maintain knowledge bases that grow over time. The streamable HTTP transport means you can integrate it remotely without running the server locally.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →

MemoryOracle

Persistent long-term memory for AI agents. Agents never forget.

10 tools. SQLite FTS5 full-text search. Per-namespace isolation. GDPR-compliant forget. Cross-references with FeedOracle Trust Layer.

npx -y mcp-remote https://mcp.feedoracle.io/memory/mcp/

The problem

Every MCP tool call is stateless. When Claude Desktop restarts, when Cursor closes, when the session ends — the agent forgets everything. No user preferences, no project history, no learned rules, no portfolio tracking.

MemoryOracle gives agents a persistent, searchable memory that survives restarts, works across clients, and gets more valuable over time.

Tools

ToolWhat it does
store_memoryStore a fact, preference, decision, or rule. Deduplicates automatically.
query_memoryFull-text search with BM25 ranking and recency boost
update_factUpdate a memory with new info. Preserves version history (last 10 changes)
forgetPermanently delete by ID, category, age, or everything. GDPR Art. 17
summarize_sessionEnd-of-session capture: summary + extracted facts, decisions, action items
list_memoriesBrowse with filters: category, importance, recency, access frequency
cross_referenceVerify a memory against FeedOracle Trust Layer evidence
memory_statsDashboard: count, storage, categories, most accessed, recent
export_memoriesExport all as JSON. GDPR Art. 20 data portability
health_checkService status

Memory categories

CategoryWhen to use
factVerified information: "USDC is MiCA authorized"
preferenceUser/agent preferences: "Conservative allocation, no USDT"
decisionDecisions made: "Blocked USDT for EU clients"
observationPatterns noticed: "RLUSD peg stable for 30 days"
ruleBusiness rules: "Never recommend assets with peg deviation > 2%"
sessionSession summaries with linked facts
portfolioPortfolio positions and allocations
action_itemOpen tasks: "Check RLUSD status in April"

Example: Compliance agent workflow

Session 1 — Agent does MiCA compliance checks:

{"name": "store_memory", "arguments": {
  "content": "USDT blocked for EU — MiCA NOT AUTHORIZED. Preflight: STOP.",
  "category": "decision", "importance": 10,
  "tags": ["usdt", "mica", "blocked"],
  "namespace": "compliance-bot"
}}

Session 2 — Next day, agent remembers:

{"name": "query_memory", "arguments": {
  "query": "USDT EU compliance status",
  "namespace": "compliance-bot"
}}

→ Instantly recalls the decision from yesterday. No re-checking needed.

End of session — Auto-capture:

{"name": "summarize_session", "arguments": {
  "summary": "Reviewed stablecoin portfolio. USDT blocked. RLUSD pending.",
  "key_facts": ["USDC authorized", "EURC authorized", "USDT blocked"],
  "decisions": ["Block USDT for EU"],
  "action_items": ["Check RLUSD in April 2026"],
  "namespace": "compliance-bot"
}}

Why this is different

FeatureMemoryOracleOthers
SearchFTS5 BM25 ranking + recency boostBasic keyword
Categories8 structured typesFlat key-value
Session captureAuto-extracts facts, decisions, actionsManual only
Trust LayerCross-reference with signed evidenceNone
GDPRArt. 17 forget + Art. 20 exportUsually missing
NamespacesPer-agent isolationShared global
HistoryVersion tracking (last 10 changes)Overwrite
TTLAuto-expiry with configurable hoursNone

x402 Pay-per-call

POST https://tooloracle.io/x402/memory/mcp/
ToolUnitsPrice
store_memory2$0.02
query_memory5$0.05
summarize_session8$0.08
cross_reference5$0.05
list_memories3$0.03
update_fact2$0.02
forget1$0.01

Connect

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.feedoracle.io/memory/mcp/"]
    }
  }
}

Part of ToolOracle

MemoryOracle is part of ToolOracle — 50+ MCP servers, 530+ tools. Powered by FeedOracle compliance infrastructure.

The memory layer that makes Decision Preflight, Trust Layer, ISO 20022, and every other tool exponentially more valuable.

Read More

📝 We Built an AI Agent That Runs 24/7, Never Forgets, and Checks Its Own Work — How Memory + Scheduler + Decision Preflight work together as one integrated autonomous agent stack. Real tool outputs, no theory.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
UpdatedMay 7, 2026
View on GitHub

More from tooloracle

  • Newsoracle
  • Policyoracle
  • Predictoracle
  • Quantum
  • Registeroracle
  • Reserveoracle
  • Resilienceoracle
  • Revieworacle
  • Tlpt
  • Tonoracle
  • Trustlayer
  • Zkevidenceoracle
  • Joboracle
  • PaymentOracle — Verifiable Multi-Rail Payment Receipts
  • DealOracle — OracleNet Deal Discovery Protocol Reference
  • Accessoracle
  • Agentguard
  • Aml
  • Arbitrumoracle
  • Baseoracle
  • Bnboracle
  • Cloudoracle
  • Cybershield
  • Dora

Related AI & LLM Tools MCP Servers

View all →
turbyho avatar
Mem Context

turbyho/mem-context

Temporal memory MCP server with LanceDB vector search, weight-decay scoring, and LLM consolidation
logiclabsai avatar
MindFlows

us.mindflows/mcp-server

Visual workflow memory: search, read, and freeze MindFlows workflows from any agent.
useorgx avatar
OrgX

useorgx/orgx-mcp

OrgX is coordination infrastructure for AI-native teams. It gives your LLM a persistent organizational layer: initiatives with milestones and tasks, human-in-the-loop decision workflows, specialist agent delegation, and cross-session memory that survives tool switching. What you can do with OrgX via MCP: Scaffold initiatives — decompose a goal into workstreams, milestones, and tasks in one call Manage decisions — create, review, approve, or reject decisions with audit trails Delegate to specialist agents — spawn tasks for domain agents (engineering, marketing, product, sales, operations, design) and monitor their progress Query organizational memory — search past decisions, artifacts, and learnings across initiatives Track progress — get initiative health, agent status, blockers, and morning briefs Plan and prioritize — score queues, get next-action recommendations, and run autonomous sessions with budget guardrails OrgX is built for solo founders and small teams who work across multiple AI tools and lose context between sessions. Instead of manually shuttling context between Claude, Cursor, and ChatGPT, OrgX holds the organizational graph so every tool sees the same state.
Vibe Prospecting logoVibe Prospecting logo
Vibe Prospecting

explorium-ai/vibeprospecting-mcp

Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more.
30
stripe avatar
Mcp

com.stripe/mcp

MCP server integrating with Stripe - tools for customers, products, payments, and more.
1.6k
ferdousbhai avatar
Investor

ferdousbhai/investor-agent

Provides financial market data, analysis, and indicators via MCP endpoints.
328