Searchable, local memory for coding agents. Ingest chats from Cursor, Claude Code, and Kiro; recall them anywhere via CLI or MCP. No servers, no API keys.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"memgrep": {
"command": "npx",
"args": [
"-y",
"darula-hpp/memgrep"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add memgrep npx -y darula-hpp/memgrep
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"memgrep": {
"command": "npx",
"args": [
"-y",
"darula-hpp/memgrep"
]
}
}
}
📋 Copy