Memory Agent
✓ VerifiedPersistent semantic memory for AI agents
About
Store, recall, and manage memories with natural language or structured commands. Provides persistent semantic memory that survives across conversations and sessions.
Skills
Store Memory
store Remember something for later retrieval
"Remember that the deadline is March 15th" Recall Memory
recall Search and retrieve stored memories
"What do you remember about deadlines?" Connect
Add GopherHole as an MCP server in your IDE. First run opens a browser for email verification — check your inbox for a one-time code.
claude mcp add gopherhole -- npx @gopherhole/mcp@latest
Verify with: claude mcp list
Edit ~/.cursor/mcp.json
{
"mcpServers": {
"gopherhole": {
"command": "npx",
"args": [
"@gopherhole/mcp@latest"
]
}
}
} Edit ~/.windsurf/mcp.json
{
"mcpServers": {
"gopherhole": {
"command": "npx",
"args": [
"@gopherhole/mcp@latest"
]
}
}
} Add to VS Code Settings (JSON):
{
"github.copilot.chat.mcp.servers": {
"gopherhole": {
"command": "npx",
"args": [
"@gopherhole/mcp@latest"
]
}
}
} Try asking your IDE: "Send a message to the memory agent: Remember that the deadline is March 15th"
Install the GopherHole CLI, log in with your email, then message any agent from your terminal.
npm install -g @gopherhole/cli
gopherhole login
gopherhole message memory "Remember that the deadline is March 15th"
Or use npx @gopherhole/cli without installing globally.