
Memorious MCP
@cedricvidal
关于 Memorious MCP
Memorious-MCP is a minimal Model Context Protocol (MCP) server that provides a persistent key-value memory store with vector-similarity lookup using ChromaDB.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"memorious": {
"command": "uvx",
"args": [
"memorious-mcp"
]
}
}
}工具
3Store a user's fact, piece of information, or preference for later recall. IMPORTANT: `key` MUST be short, canonical, and optimized for embedding/vector similarity lookups. Prefer 1–5 words separated by spaces (for example: "likes jazz", "pref cuisine italian", "lives in paris"). Do NOT use long sentences or paragraphs as keys — put long text into `value` instead. This tool SHOULD be called by the LLM whenever the user states a fact, personal detail, or stable preference that the assistant is expected to remember. Guidelines for the LLM: - Call this tool for user-expressed facts, identity details, or explicit preferences that will be useful later. - Use `key` as a short, consistent, space-separated descriptor across related memories to improve retrieval quality (canonicalize synonyms where possible). - Use `value` for the full text of the fact or preference to be stored and returned on recall; include any extra context inside `value`. Privacy: avoid storing highly sensitive data (passwords, social security numbers, bank details) unless the user explicitly requests secure storage and consents.
Retrieve stored memories relevant to a query key. IMPORTANT: To get reliable results the LLM MUST query with the same short, canonical, embedding-optimized keys used at store time. Keys should be compact (1–5 words, space-separated) and represent the core concept — avoid long descriptive queries. If the current user utterance is verbose, the LLM should first map or canonicalize it to an appropriate short key before calling this tool (for example map "I really like listening to jazz music" -> "likes jazz"). This tool SHOULD be called by the LLM when it needs to fetch previously stored facts, personal details, or preferences to inform a response or provide personalized behavior (for example: to recall a user's favorite cuisine before making restaurant suggestions). Parameters: - key: concise, embedding-friendly, space-separated query text used for similarity search. - top_k: maximum number of nearest memories to return. Returns a dict with `results` (memory items including stored value). If nothing matches, `results` is empty.
Delete stored memories that match a query key. IMPORTANT: Deletion operates on short, canonical keys. The LLM MUST issue forget calls using the same concise, embedding-optimized, space-separated key style used to create memories (otherwise relevant memories may not be found). Prefer 1–5 words separated by spaces when requesting deletions. This tool SHOULD be called by the LLM when the user explicitly requests that certain stored information be forgotten or removed (for example: "forget that I live in Paris") or when the assistant decides a memory must be purged because it is incorrect or sensitive. Parameters: - key: concise, canonical, space-separated query text used to find candidate memories to delete. - top_k: number of nearest matches to consider for deletion. Behavior: - Deletion is irreversible; the LLM should confirm with the user when intent is ambiguous before invoking this tool. - The tool returns `deleted_ids` for the memories that were removed.
概览
What is Memorious MCP?
Memorious MCP is a local and persistent semantic memory server for AI assistants using the Model Context Protocol (MCP). It uses ChromaDB for vector similarity search and FastMCP for efficient tool implementation, and runs entirely on your machine—no data ever leaves it.
How to use Memorious MCP?
Install via uvx memorious-mcp or set up in a virtual environment with uv sync and uv run memorious-mcp. Add the server to your MCP client configuration with the command uvx and arguments ["memorious-mcp"]. Use the three built-in tools: store, recall, and forget.
Key features of Memorious MCP
- 100% local and private – all processing stays on your machine
- Persistent memory across sessions using ChromaDB disk-based storage
- Semantic search via vector embeddings for similarity-based retrieval
- Simple three-tool API for memory management
- FastMCP integration for efficient MCP server implementation
- Canonical key design optimized for short, embedding-friendly keys
- No external API calls or cloud dependencies required
Use cases of Memorious MCP
- Personal assistant memory – remember user preferences, habits, and personal information
- Context preservation – maintain conversation context across sessions
- Knowledge management – store and retrieve project-specific information
- Personalization – enable AI assistants to provide tailored responses based on stored preferences
- Privacy‑first AI – keep sensitive personal data local while still having persistent memory
FAQ from Memorious MCP
How does Memorious MCP ensure privacy?
All data processing and storage happens locally on your machine—no network requests, no cloud dependencies, and no data ever leaves your computer.
What are the system requirements?
Python version 3.12 or higher is required. The server uses ChromaDB and FastMCP, which are installed automatically.
Where is my data stored?
Data is stored in the ./.memorious directory (configurable) using ChromaDB’s persistent disk-based storage.
记忆与知识 分类下的更多 MCP 服务器
Rust Docs MCP Server
Govcraft🦀 Prevents outdated Rust code suggestions from AI assistants. This MCP server fetches current crate docs, uses embeddings/LLMs, and provides accurate context via a tool call.
Ultimate Google Docs & Drive MCP Server
a-bonusThe Ultimate Google Docs, Sheets, Drive, Gmail, & Google Calendar MCP Server. This MCP (primarily for use in Claude Desktop) gains full access to your google suite and lets claude do its thing.
🧠 Ultimate MCP Server
DicklesworthstoneComprehensive MCP server exposing dozens of capabilities to AI agents: multi-provider LLM delegation, browser automation, document processing, vector ops, and cognitive memory systems
MCP server for Obsidian
MarkusPfundsteinMCP server that interacts with Obsidian via the Obsidian rest API community plugin
Notion MCP Integration
danhilseA simple MCP integration that allows Claude to read and manage a personal Notion todo list
评论