Evermemos MCP Server

MCP Server that brings long-term memory to AI coding tools via EverMemOS

Local serverstdio

What is the Evermemos MCP server?

Evermemos MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP Server that brings long-term memory to AI coding tools via EverMemOS.

What you get

You spent thirty minutes explaining your architecture, naming conventions, and why you dropped MongoDB. Next session — gone. You explain it all over again.

What the assistant can call

Once Evermemos is connected, these are the calls the assistant has available:

  • list_spaces — Discover available memory spaces
  • remember — Store context into long-term memory. Auto-detects sensitive content (API keys, passwords) and checks for conflicting memories
  • request_status — Check if a queued write has been extracted
  • recall — Search memories with 6 retrieval strategies (keyword / hybrid / vector / RRF / agentic / auto)
  • briefing — One-call session-start context restore: profile + episodes + facts + foresights
  • forget — Targeted deletion with verification workflow
  • fetch_history — Paginate through memory timeline by type

Configuration and credentials

You will need 3 environment variables: EVERMEMOS_API_KEY, EVERMEMOS_USER_ID, EVERMEMOS_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at evermemos-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Evermemos's toolset — list_spaces, remember, request_status and 4 more — is a fair guide to whether it matches your workflow.

This entry was verified against Evermemos's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the evermemos mcp server does with a few real requests.

Available tools

ToolWhat it does
list_spacesDiscover available memory spaces
rememberStore context into long-term memory. Auto-detects sensitive content (API keys, passwords) and checks for conflicting memories
request_statusCheck if a queued write has been extracted
recallSearch memories with 6 retrieval strategies (keyword / hybrid / vector / RRF / agentic / auto)
briefingOne-call session-start context restore: profile + episodes + facts + foresights
forgetTargeted deletion with verification workflow
fetch_historyPaginate through memory timeline by type

How to install the Evermemos MCP server

{
  "mcpServers": {
    "evermemos-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": ["evermemos-mcp@latest"],
      "env": {
        "EVERMEMOS_API_KEY": "your-key-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
EVERMEMOS_API_KEYCredential the server authenticates with.Yes
EVERMEMOS_USER_IDConfiguration value read at startup.Optional
EVERMEMOS_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Evermemos to list spaces.
  • Use Evermemos to remember.
  • Use Evermemos to request status.

Frequently asked questions

It connects Evermemos to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (list_spaces, remember, request_status, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Evermemos directly.