What is the YourMemory MCP server?
Persistent memory for AI agents. Memories decay with time and strengthen on recall.
How to install YourMemory
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PYTHONIOENCODINGSet to utf-8 to ensure correct text encoding on all platforms.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"yourmemory": {
"command": "uvx",
"args": [
"yourmemory"
],
"env": {
"PYTHONIOENCODING": "<YOUR_PYTHONIOENCODING>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"yourmemory": {
"command": "uvx",
"args": [
"yourmemory"
],
"env": {
"PYTHONIOENCODING": "<YOUR_PYTHONIOENCODING>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"yourmemory": {
"command": "uvx",
"args": [
"yourmemory"
],
"env": {
"PYTHONIOENCODING": "<YOUR_PYTHONIOENCODING>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"yourmemory": {
"type": "stdio",
"command": "uvx",
"args": [
"yourmemory"
],
"env": {
"PYTHONIOENCODING": "<YOUR_PYTHONIOENCODING>"
}
}
}
}Claude Code
claude mcp add yourmemory --env PYTHONIOENCODING=<YOUR_PYTHONIOENCODING> -- uvx yourmemoryRelated MCP servers
Ebbinghaus-based persistent memory for Claude. Memories decay with time, strengthen on recall.
View repository →