What problem does it solve? When MCP is unavailable or a host does not speak MCP, you still need a reliable way to store and retrieve agent memories. This Skill documents the agentmemory HTTP REST API, the primary protocol surface of the memory server, so any HTTP client can perform memory operations directly. ## Core Features & Use Cases - Full REST Surface: Access 130 registered endpoints under http://localhost:3111/agentmemory/* covering remember, smart-search, sessions, checkpoints, graph queries, and more. - MCP Fallback: Use REST as the fallback protocol when MCP tooling is unavailable, since MCP is a bridge on top of this API. - Simple Auth Model: Localhost is open by default; when AGENTMEMORY_SECRET is set, send Authorization: Bearer $AGENTMEMORY_SECRET. - Use Case: An external automation script needs to persist a decision. It POSTs to /agentmemory/remember with content and concepts, then later recalls it via /agentmemory/smart-search with a natural-language query. ## Quick Start Ask the agent to save a memory by POSTing to http://localhost:3111/agentmemory/remember with a JSON body containing content and concepts, then verify with a smart-search query.