SuperLocalMemory ships two ways. As a native editor plugin — skills, sub-agents, slash commands, and hooks packaged together — for the editors that support one. And as a plain MCP server that any Model Context Protocol client can connect to directly, with no plugin required.
A plugin installs the full surface at once — twelve skills, four advisory sub-agents, a slash command, and session hooks — sourced from the same repository as the package, so they cannot drift apart.
Installs from the qualixar marketplace. Restart Claude Code to load it after install or update.
# adds the marketplace, then installs
claude plugin marketplace add qualixar/superlocalmemory
claude plugin install superlocalmemory@qualixar A dedicated Codex build — its own rules, hooks, and launcher, not a relabeled copy of another editor's plugin.
# adds the marketplace, then installs
codex plugin marketplace add qualixar/superlocalmemory --ref main
codex plugin add superlocalmemory-codex@qualixar Antigravity's plugin installer takes a local directory, not a remote marketplace — clone the repository first.
# clone, then point agy at the plugin folder
git clone https://github.com/qualixar/superlocalmemory.git
agy plugin install superlocalmemory/antigravity-plugin A plugin is a convenience — skills, sub-agents, and hooks bundled for editors that support the format. The memory itself is served over the Model Context Protocol, which any compliant client can reach with a single server entry.
Works the same way in Cursor, a raw mcpServers block, or any tool that speaks MCP over stdio — no marketplace, no plugin manager.
{
"mcpServers": {
"superlocalmemory": {
"command": "slm",
"args": ["mcp"]
}
}
}