MEMEX is a local MCP server for managing your knowledge base of guides and contexts.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"memex-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
███╗ ███╗███████╗███╗ ███╗███████╗██╗ ██╗ ████╗ ████║██╔════╝████╗ ████║██╔════╝╚██╗██╔╝ ██╔████╔██║█████╗ ██╔████╔██║█████╗ ╚███╔╝ ██║╚██╔╝██║██╔══╝ ██║╚██╔╝██║██╔══╝ ██╔██╗ ██║ ╚═╝ ██║███████╗██║ ╚═╝ ██║███████╗██╔╝ ██╗ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
MCP Security Weekly
Get CVE alerts and security updates for Memex Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
███╗ ███╗███████╗███╗ ███╗███████╗██╗ ██╗
████╗ ████║██╔════╝████╗ ████║██╔════╝╚██╗██╔╝
██╔████╔██║█████╗ ██╔████╔██║█████╗ ╚███╔╝
██║╚██╔╝██║██╔══╝ ██║╚██╔╝██║██╔══╝ ██╔██╗
██║ ╚═╝ ██║███████╗██║ ╚═╝ ██║███████╗██╔╝ ██╗
╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
┌─────────────────────────────────────────────────────────────────┐
│ │
│ • FREE TO USE - NO STRINGS ATTACHED │
│ │
│ This project is MIT licensed to maximize adoption and help │
│ as many developers as possible. We believe in open source │
│ through voluntary contribution rather than legal obligation. │
│ │
│ • Found a bug? Built something cool? │
│ • We'd love your contribution via issue or PR! │
│ │
│ See CONTRIBUTING.md for guidelines. │
│ │
└─────────────────────────────────────────────────────────────────┘
License: MIT - Use freely in any project.
MEMory + indEX - A Model Context Protocol (MCP) server for managing your knowledge base of guides and contexts.
Inspired by Vannevar Bush's visionary Memex (1945), MEMEX augments AI memory by providing persistent access to technical guides and reusable contexts.
📖 Documentation: USAGE.md (complete guide) | AGENTS.md (for AI agents)
nomic-embed-text model (for semantic search) - Install Ollamamcp/sdk)Default knowledge base location: ~/.memex/knowledge-base
make install # Install dependencies
ollama pull nomic-embed-text # Setup Ollama for semantic search
make build # Build binary
./memex server # Run server
Complete setup instructions: USAGE.md
curl -L https://github.com/jacquesbh/memex-mcp/releases/latest/download/memex -o memex
chmod +x memex
./memex --version
Once installed, keep MEMEX up-to-date:
./memex self-update
Configure your knowledge base location in three ways (priority: CLI > Local config > Global config > Default):
./memex server --kb=/path/to/kb./memex.json (project-specific)~/.memex/memex.json (user-wide)Config file format:
{
"knowledgeBase": "/absolu
... [View full README on GitHub](https://github.com/jacquesbh/memex-mcp#readme)