Generic MCP client
Connect any client that speaks the MCP Streamable HTTP transport.
Install
- Open your MCP client's configuration (usually a JSON file).
- Add the recall.select server entry below, using your own memory link.
- Reload the client so it connects to the new server.
Add the server to your client's MCP configuration.
{
"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.
Keep the key out of the URL
Putting the key in the URL is the simplest setup, but it can end up in logs or proxies. To avoid that, point your client at the key-less endpoint and send the link in a header instead.
{
"mcpServers": {
"recall-select": {
"type": "http",
"url": "https://recall.select/mcp",
"headers": {
"Authorization": "Bearer YOUR-MEMORY-KEY"
}
}
}
}
Using it
Any MCP client that supports the Streamable HTTP transport can use recall.select the same way: store memories now, recall them by meaning later. No extra API key or auth step - the link is the credential.
Tips
- The link is a secret. Don't paste it where it might be logged or shared.
Related