Model Context Protocol (MCP) server providing LLM agents with structured long-term memory graph storage and relational query tools.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-sqlite-memory-se": {
"command": "go",
"args": [
"run",
"github.com/wajidraza/mcp-sqlite-memory-server@latest"
]
}
}
}
Run in terminal:
claude mcp add mcp-sqlite-memory-se go run github.com/wajidraza/mcp-sqlite-memory-server@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-sqlite-memory-se": {
"command": "go",
"args": [
"run",
"github.com/wajidraza/mcp-sqlite-memory-server@latest"
]
}
}
}