garnet-mcp
Allows using a Redis-compatible vector set as the persistent memory backend, enabling semantic search over stored facts and text snippets via the provided memory tools.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@garnet-mcpRemember that I have a meeting on Fridays at 10am"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Garnet Vector Memory MCP Server
An MCP (Model Context Protocol) server that gives LLM agents a retrieval-augmented (RAG) memory backed by Garnet Vector Sets. Agents store text as embeddings and later retrieve the most semantically relevant snippets by meaning to ground their responses — persisting across sessions, not just within a single conversation. This is application-layer semantic recall (RAG): it augments the model's prompt with retrieved context, and is distinct from inference-layer KV-cache reuse (e.g. LMCache). It runs against a local or self-hosted OSS Garnet (or any Redis-compatible endpoint that supports Vector Sets), with bring-your-own embeddings.
Tools
The server exposes five tools over the MCP stdio transport (HTTP is also supported):
Tool | Description |
| Persist a fact or piece of text to long-term memory. Returns a memory id. |
| Semantic search over stored memories; returns the closest matches with scores. |
| Delete a stored memory by its id. |
| List the vector-set memory indexes that currently exist. |
| Show metadata (metric, dimensions, size) for a memory index key. |
Related MCP server: better-qdrant-mcp
Prerequisites
.NET 10 SDK — required so clients can launch the server with the
dnxcommand (ships with the .NET 10 SDK). The package itself targetsnet9.0.A Garnet server started with Vector Sets enabled. Vector Sets are currently a Garnet preview feature and must be turned on explicitly with
--enable-vector-set-preview. Any Redis-compatible endpoint exposing theV*vector commands also works.Embeddings (optional but recommended). Set
Embeddings__Provider=AzureOpenAIand point it at an Azure OpenAI embedding deployment (keyless auth viaDefaultAzureCredential/az login). Without it, the server falls back to a deterministic Fake provider that requires no external calls — useful for local demos and tests, but not for meaningful semantic recall.
Install (from NuGet)
The server is published as a .NET tool package that MCP clients run via dnx. Add it to your client's MCP config, e.g. .vscode/mcp.json for VS Code / GitHub Copilot:
{
"servers": {
"garnet-mcp": {
"type": "stdio",
"command": "dnx",
"args": ["GarnetMcp.Server@0.1.0", "--yes"],
"env": {
"Garnet__Host": "127.0.0.1",
"Garnet__Port": "6379",
"Embeddings__Provider": "AzureOpenAI",
"Embeddings__Endpoint": "https://YOUR-RESOURCE.openai.azure.com/",
"Embeddings__DeploymentName": "text-embedding-3-small",
"Embeddings__Dimensions": "1536"
}
}
}
}To run the fully offline demo, drop the Embeddings__* entries (or set Embeddings__Provider=Fake).
Recommended agent instructions
The server already sends usage guidance to any MCP client at connect time (via the server's ServerInstructions), so most agents will use the tools appropriately on their own. If you want to make an agent use the memory proactively, add something like the following to that agent's custom-instructions (e.g. .github/copilot-instructions.md in your project, a Claude/Cursor rules file, etc.):
Before answering anything about the user — their preferences, facts, decisions, or past statements — FIRST call
recall_memory, even if the answer seems to be in the current chat (memories persist across sessions). Whenever the user states a durable fact about themselves or asks you to remember something, callstore_memoryto persist it, then briefly confirm what you saved.
Configuration
All settings are read from configuration / environment variables. In environment-variable form, use __ (double underscore) as the section separator.
Setting | Env var | Default | Notes |
Garnet host |
|
| Blank is treated as the default. |
Garnet port |
|
| |
Key prefix |
|
| Prefix for memory index keys. |
Log Redis commands |
|
| Set |
Log level |
|
| Default is a quiet startup line + warnings/errors. Set |
Embedding provider |
|
|
|
Azure OpenAI endpoint |
| — | Required when provider is |
Deployment name |
|
| |
Dimensions |
|
| Must match the embedding model. |
API key |
| — | Optional; prefer keyless |
Memory owner |
|
| Pins the memory owner so store and recall always agree. |
Transport |
|
|
|
Embedding providers
Two providers ship out of the box:
AzureOpenAI— real embeddings; the only production-quality option. Keyless viaDefaultAzureCredential(or an API key).Fake— deterministic, offline, hash-seeded vectors. Useful for local runs and tests, but not semantically meaningful — don't use it for real recall.
Embedding generation sits behind the IEmbeddingProvider abstraction (EmbedAsync / EmbedBatchAsync, plus ModelName and Dimensions). The rest of the system — GarnetMemoryStore, the vector client, and the tools — depends solely on this interface, so additional backends (for example OpenAI, a local model served via Ollama, or Hugging Face) can be introduced without touching that code. To add one, implement IEmbeddingProvider and register it in Program.cs (ConfigureDomain) under the corresponding Embeddings__Provider value.
Memory ownership (single-tenant by design)
The memory owner is pinned by configuration (Memory__User, default default) for the lifetime of the server process — the model cannot choose it per call. Both store_memory and recall_memory are scoped to that owner (recall filters on the stored user attribute), so store and recall always agree across chats and sessions.
This suits the shipped model: a personal, single-owner server launched over stdio by your own client — the process is the user. Letting the model supply the user per call is deliberately avoided because it would let store and recall drift apart (models are inconsistent) and would let one caller read or overwrite another owner's memories.
For a hosted, multi-tenant deployment (the Http transport serving many people), the correct source of the owner is the authenticated caller's identity (from the auth token/headers) — never a value chosen by the model. That is a deliberate future enhancement, not something to wire through the tool arguments.
Build and run from source
# Build + test the solution (integration tests self-skip when Garnet/AOAI are unreachable).
dotnet test src/GarnetMcp.slnx
# Run the server directly over stdio.
dotnet run --project src/GarnetMcp.Server
# Optional: interactive console to try store/recall/forget by hand (dev only; not part of the package).
dotnet run --project src/GarnetMcp.DemoStart a local Garnet with Vector Sets enabled before exercising the memory tools:
garnet --enable-vector-set-preview trueCaveats
Preview MCP SDK. This project pins
ModelContextProtocol 2.0.0-preview.2. The SDK's API surface may change between preview releases.Garnet Vector Sets are preview. Start Garnet with
--enable-vector-set-preview, or memory tools return a clear "Vector Sets are not enabled" error.list_indexeson a multi-node cluster. Index enumeration usesSCANon the connected node, so against a self-hosted multi-node Garnet cluster it returns only that node's keys (partial results). Single-node / self-hosted setups are unaffected, andstore_memory/recall_memory/forget_memoryare unaffected either way (they operate on specific keys).
License
MIT © Tara Zou
This server cannot be installed
Maintenance
Related MCP Servers
- Flicense-qualityDmaintenanceA local MCP server that provides semantic memory storage and retrieval for coding and AI agents, enabling durable context across chat sessions.1274
- AlicenseAqualityDmaintenanceAn MCP server that provides long-term memory and semantic search using Qdrant and OpenAI embeddings, with tools for storing, searching, and managing knowledge.61MIT
- AlicenseBqualityCmaintenanceAn MCP server for storing and retrieving memories using Qdrant vector search, acting as a semantic memory layer.2Apache 2.0
- Alicense-qualityBmaintenanceA shared memory MCP server for AI agents that provides persistent, semantic memory across sessions and tools, enabling long-term recall and context sharing.211MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Cloud-hosted MCP server for durable AI memory
Shared long-term memory vault for AI agents with 20 MCP tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tarazou9/garnet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server