Claude Code
Wire recall.select into Anthropic's Claude Code CLI.
Install
- Create a file named .mcp.json at the root of your project.
- Paste the configuration below, replacing the placeholder with your own memory link.
- Restart Claude Code - the recall.select memory tools are picked up automatically.
Save this as .mcp.json in the root folder of your project.
{
"mcpServers": {
"recall-select": {
"type": "http",
"url": "https://recall.select/m/YOUR-MEMORY-KEY"
}
}
}
Your memory link is the whole credential - anyone who has it can read and write your memory. Keep it secret.
Using it
Once connected, Claude Code can save what matters as you work and recall it by meaning in later sessions, so you never have to explain the same thing twice.
Tips
- Prefer the terminal? Running "claude mcp add --transport http recall-select <your-link>" does the same thing without editing a file.
- Your link is the whole password: anyone who has it can read and write your memory. Add .mcp.json to your .gitignore so it never lands in version control.
Related