Copilot Memory MCP Server

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.

Local serverstdioPython

What is the Copilot Memory MCP MCP server?

Most knowledge and memory work still happens through a UI a human drives. Copilot Memory MCP MCP server moves it into the conversation instead. Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.

The short version

A local MCP server that gives Copilot durable, project-scoped memory across sessions. Memories are stored in an embedded ChromaDB vector database with all-MiniLM-L6-v2 embeddings, enabling semantic retrieval (RAG). Everything runs in a single Docker container — no cloud services required.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • create_memory — Store a new memory with title, content, optional project scope and tags
  • search_memories — Semantic vector search; filter by project and/or tags
  • update_memory — Update an existing memory by ID; re-embeds on change
  • delete_memory — Permanently delete a memory by ID
  • list_memories — Browse memories with pagination (lightweight, no content)

What it needs from you

Configuration is passed through the environment: CHROMA_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Copilot Memory MCP's toolset — create_memory, search_memories, update_memory and 2 more — is a fair guide to whether it matches your workflow. It is maintained by LabForgeDev; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Available tools

ToolWhat it does
create_memoryStore a new memory with title, content, optional project scope and tags
search_memoriesSemantic vector search; filter by project and/or tags
update_memoryUpdate an existing memory by ID; re-embeds on change
delete_memoryPermanently delete a memory by ID
list_memoriesBrowse memories with pagination (lightweight, no content)

Configuration

VariableDescriptionRequired
CHROMA_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Copilot Memory MCP to create memory.
  • Use Copilot Memory MCP to search memories.
  • Use Copilot Memory MCP to update memory.

Frequently asked questions

It connects Copilot Memory MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (create_memory, search_memories, update_memory, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Copilot Memory MCP directly.