MCP server for MenteDB. Gives AI agents a cognitive memory layer that persists across sessions, learns context, and actually remembers.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mentedb-mcp": {
"command": "cargo",
"args": [
"run",
"--",
"mentedb-mcp"
]
}
}
}
Run in terminal:
claude mcp add mentedb-mcp cargo run -- mentedb-mcp
Add to .cursor/mcp.json:
{
"mcpServers": {
"mentedb-mcp": {
"command": "cargo",
"args": [
"run",
"--",
"mentedb-mcp"
]
}
}
}