Memorious MCP
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., "@Memorious MCPstore my favorite coffee order as large oat milk latte with two shots"
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.
memorious-mcp

A 100% local & private semantic memory MCP (Model Context Protocol) server for AI assistants. Built with ChromaDB for vector similarity search and FastMCP 2. Runs entirely locally - no data ever leaves your machine.
Overview
memorious-mcp provides AI assistants with long-term memory capabilities through three core operations: store, recall, and forget. It uses ChromaDB's vector database to enable semantic similarity search, allowing assistants to retrieve relevant memories even when the exact wording differs from the original storage. All processing and storage happens locally on your machine - no data ever leaves your machine, ensuring complete privacy and security.
Key Features
π 100% Local & Private: All data processing and storage happens on your machine - nothing goes to the cloud
πΎ Persistent Memory: Data persists across sessions using ChromaDB's disk-based storage
π Semantic Search: Vector embeddings enable similarity-based memory retrieval
β‘ Simple API: Three intuitive tools for memory management
π FastMCP Integration: Built on FastMCP for efficient MCP server implementation
π― Canonical Key Design: Optimized for short, embedding-friendly keys (1-5 words)
π Folder Scoped Storage: Per-project memory isolation.
Why This Project Exists
π Gap in the MCP Ecosystem: Despite the growing popularity of memory MCP servers, there wasn't an existing memory server that combines both semantic similarity search and complete file based folder scoped local storage. Most memory solutions either:
βοΈ Require cloud services and external API calls (compromising privacy) for either embeddings or storage or both
π€ Only support exact key-value matching (no semantic understanding)
π Don't support folder scoped local storage
Use Cases
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 personalized responses based on stored preferences
Privacy-First AI: Keep sensitive personal data local while still having persistent memory
Folder-Scoped AI Agents: Perfect for VS Code Copilot Chat Modes and Claude Code agents with per-project memory isolation
Installation
For VS Code
Make sure you have uv and its its uvx command installed first.
For most MCP clients
Add to your MCP client configuration:
{
"mcpServers": {
"memorious": {
"command": "uvx",
"args": ["memorious-mcp"]
}
}
}Development / Local Installation
uv syncFor development/local installation:
{
"mcpServers": {
"memorious": {
"command": "uv",
"args": ["run", "memorious-mcp"],
"cwd": "/path/to/memorious-mcp"
}
}
}Tools
store
Store facts, preferences, or information with short canonical keys optimized for vector similarity.
Parameters:
key(string): Short, canonical key (1-5 words, space-separated)value(string): The actual information to store
recall
Retrieve stored memories using semantic similarity search.
Parameters:
key(string): Query key for similarity searchtop_k(int, default: 3): Maximum number of results to return
forget
Delete memories matching a query key.
Parameters:
key(string): Query key to find memories to deletetop_k(int, default: 3): Number of nearest matches to consider
Claude CLI Configuration
To add memorious-mcp to Claude CLI, use the following commands:
# Add the MCP server using uvx (recommended)
claude mcp add memorious-mcp uvx memorious-mcp
# Alternative: for development/local installation
claude mcp add memorious-mcp uv run --project <memorious_mcp_src> memorious-mcpYou can then list your configured MCP servers:
claude mcp listAnd remove the server if needed:
claude mcp remove memorious-mcpExample Tool Signatures
store(key: str, value: str) -> {"id": str}recall(key: str, top_k: int = 3) -> {"results": [...]}where each result includes id, key, value, distance, timestampforget(key: str, top_k: int = 3) -> {"deleted_ids": [...]}
Testing
Run tests with:
# Using uv
uv run python -m pytest tests/ -v
# Or if pytest is available globally
pytest tests/ -vTechnical Details
Backend: ChromaDB with persistent disk storage
Embeddings: Uses ChromaDB's default embedding function (local processing)
Storage Location:
./.memoriousdirectory (configurable)Python Version: Requires Python β₯3.12
License: MIT
Privacy: No network requests, no cloud dependencies, all data stays local
Package Structure
The project follows the standard Python package layout:
memorious-mcp/
βββ src/
β βββ memorious_mcp/
β βββ __init__.py
β βββ main.py # MCP server entry point
β βββ backends/
β βββ __init__.py
β βββ memory_backend.py # Abstract base class
β βββ chroma_backend.py # ChromaDB implementation
βββ tests/
β βββ test_chroma_backend.py # Integration tests
βββ pyproject.toml # Package configuration
βββ README.mdThe server is designed for local/CLI integrations using stdio transport, making it suitable for personal AI assistants and development workflows where privacy and data security are paramount.
Limitations
β οΈ Important Security Considerations
While your data is 100% safe and private because it never leaves your local machine, you should still exercise caution about what you store:
Data is stored unencrypted: All stored data is persisted to disk in unencrypted format in the
.memoriousdirectoryAvoid storing secrets: Do NOT store passwords, API keys, private keys, personal identification numbers, financial information, or any other sensitive credentials
Local file access: Anyone with access to your machine and the
.memoriousdirectory can read all stored memoriesExercise caution: While the MCP server warns the client LLM to avoid storing sensitive information, you should not rely solely on this safeguard
Backup considerations: Be mindful when backing up or syncing directories containing
.memoriousfolders
Contributing
Contributions are welcome. Open a PR with tests.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/cedricvidal/memorious-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server