Zettelkasten knowledge management MCP server for Claude Desktop with knowledge graphs, imoort/export tools, and Claude Skills integration"
{
"mcpServers": {
"advanced-memory-mcp": {
"args": [
"-y",
"cd"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Zettelkasten knowledge management MCP server for Claude Desktop with knowledge graphs, imoort/export tools, and Claude Skills integration"
Is it safe?
No known CVEs for cd.
No authentication — any process on your machine can connect.
AGPL-3.0. View license →
Is it maintained?
Last commit 17 days ago. 8 stars.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'cd' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Advanced Memory Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
](https://github.com/sandraschi/advanced-memory-mcp)
Reliable Memory Tool - A dual-purpose system serving as both a Model Context Protocol (MCP) server and a standalone React-based web application. Optimized for personal knowledge management, semantic search (RAG), and data portability.
[!IMPORTANT] Dual Architecture: Memops is a hybrid system consisting of a FastMCP Server (for tool integration) and a React Webapp (for visual knowledge management).
Advanced Memory provides a stable substrate for AI assistants to store, retrieve, and synchronize knowledge across multiple platforms.
advanced-memory-mcp/
src/ # MCP server source code
webapp/ # React web application
docs/ # Documentation
tests/ # Test suite
scripts/ # Build and utility scripts
Run immediately via uvx:
uvx advanced-memory
Start the MCP server in stdio mode (required for Claude Desktop, Cursor, and other MCP clients). Add to your MCP config (e.g. Claude claude_desktop_config.json, or Cursor MCP settings):
"mcpServers": {
"advanced-memory": {
"command": "uv",
"args": ["--directory", "D:/Dev/repos/advanced-memory-mcp", "run", "advanced-memory", "mcp", "--transport", "stdio"]
}
}
Important: The mcp subcommand and --transport stdio are required. Without them the process runs the CLI and exits; the server only starts with advanced-memory mcp --transport stdio. See docs/CURSOR_MCP_SETUP.md for Cursor-specific steps.
This repository is SOTA 2026 compliant and uses the officially validated @anthropic-ai/mcpb workflow for distribution.
To generate a .mcpb distribution bundle with complete source code and automated build exclusions:
# SOTA 2026 standard pack command
mcpb pack . dist/advanced-memory-mcp.mcpb
### Standalone Web Application
**Canonical webapp docs:** [webapp/README.md](webapp/README.md) ports (10704/10705), `start.ps1`, backend health check, and troubleshooting.
Alternative startup scripts (repo root):
```powershell
# RECOMMENDED: Clean startup (kills zombies, p
... [View full README on GitHub](https://github.com/sandraschi/advanced-memory-mcp#readme)