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

Adaptive Recall

aiappsapi/adaptive-recall
3authHTTPregistry active
Summary

A hosted memory layer that stores and retrieves context for AI applications using four parallel search strategies: vector similarity, temporal recency, keyword matching, and knowledge graph traversal. It automatically extracts entities and relationships from stored memories, ranks results using cognitive science activation models, and trains ML models on your usage patterns to improve retrieval quality over time. Memories have lifecycle stages and gain or lose confidence based on corroboration. You get eight actions including store, recall, update, forget, and graph traversal. Connect via MCP or REST API with your server URL and API key. Useful when you need persistent memory across sessions that actually learns which retrieval strategy works best for different query types rather than just doing basic vector search.

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 →

Adaptive Recall

Adaptive memory system for AI applications. Patent pending.

adaptiverecall.com | Documentation | Sign Up Free

What It Does

Adaptive Recall is a hosted memory server that stores, retrieves, and manages long-term memory for AI applications. It connects via MCP or REST API.

  • Multi-strategy retrieval: four search strategies run in parallel (vector similarity, temporal recency, full-text keyword, knowledge graph traversal) and the system learns which to prioritize for each type of query
  • Cognitive scoring: results ranked using ACT-R activation modeling from cognitive science, factoring in recency, access frequency, entity connections, and validated confidence
  • Knowledge graph: entities and relationships extracted automatically from stored memories, used as a retrieval pathway alongside text similarity
  • Memory lifecycle: memories progress through stages, gain or lose confidence based on corroborating evidence, and fade naturally when unused
  • Self-improving: ML models train on your usage patterns, every parameter change must pass statistical validation against real query history before being adopted
  • Retrieval quality monitoring: the system verifies its own retrieval consistency and identifies knowledge gaps

Connect

Sign up at adaptiverecall.com to get your server URL and API key.

MCP Configuration

Add to your MCP client config (Claude Code, Codex, Cursor, or any MCP-compatible tool):

{
  "mcpServers": {
    "adaptive-recall": {
      "type": "url",
      "url": "https://YOUR_SERVER_URL/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

For Claude Code, add this to .mcp.json in your project or ~/.claude/settings.json for global access. For Gemini CLI, add to ~/.gemini/settings.json using httpUrl instead of url. For Codex, add to your Codex MCP configuration.

REST API

Every action is also available as an HTTP endpoint at https://YOUR_SERVER_URL/v1/. All requests require a Bearer token in the Authorization header.

Actions

ActionDescription
storeSave a new memory. Generates embeddings and extracts entities automatically.
recallSearch memories using multi-strategy retrieval with cognitive scoring.
updateModify an existing memory. Re-embeds automatically if content changes.
forgetRemove a memory by ID or by finding the closest match to a query.
graphExplore the knowledge graph, traversing entity relationships by name and depth.
statusSystem health, memory counts, confidence distribution, and knowledge gap detection.
snapshotGet a formatted overview of stored memories, organized by type.
feedbackSend feedback directly to the Adaptive Recall developers.

Memory Types

When storing memories, assign a type that affects how the memory is managed:

Learning types (evolve over time, gain/lose confidence, have lifecycle stages):

  • general_knowledge - facts, observations, reference information
  • user_knowledge - information about people and their preferences

Lookup types (static reference, no lifecycle):

  • callable_scripts - tool and script references
  • work_project - project tracking, tasks, deadlines
  • cross_reference - pointers to external information and resources
  • learned_procedure - multi-step workflows and procedures

Pricing

Free, Starter, Pro, and Business plans available. See adaptiverecall.com for details.

Links

  • Website
  • Documentation
  • Sign Up
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 →

Configuration

ADAPTIVE_RECALL_API_KEY*secret

Your Adaptive Recall API key (get one free at adaptiverecall.com)

Categories
AI & LLM ToolsDocuments & Knowledge
Registryactive
Packageadaptive-recall
TransportHTTP
AuthRequired
UpdatedMay 13, 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