Editor Integration

Editor plugins,
and the MCP server underneath.

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.

Native plugins

One package.
Skills, agents, commands, hooks.

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.

Claude Code

plugin

Installs from the qualixar marketplace. Restart Claude Code to load it after install or update.

  • 12 skills
  • 4 sub-agents
  • slash command + hooks
terminal
# adds the marketplace, then installs
claude plugin marketplace add qualixar/superlocalmemory
claude plugin install superlocalmemory@qualixar

Codex

plugin

A dedicated Codex build — its own rules, hooks, and launcher, not a relabeled copy of another editor's plugin.

  • 12 skills
  • 4 sub-agents
  • Codex-shaped hooks
terminal
# adds the marketplace, then installs
codex plugin marketplace add qualixar/superlocalmemory --ref main
codex plugin add superlocalmemory-codex@qualixar

Antigravity

plugin

Antigravity's plugin installer takes a local directory, not a remote marketplace — clone the repository first.

  • 12 skills
  • 4 sub-agents
  • slash command
terminal
# clone, then point agy at the plugin folder
git clone https://github.com/qualixar/superlocalmemory.git
agy plugin install superlocalmemory/antigravity-plugin
No plugin required

Any MCP client
connects directly.

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.

Add the server

Works the same way in Cursor, a raw mcpServers block, or any tool that speaks MCP over stdio — no marketplace, no plugin manager.

mcp.json
{
  "mcpServers": {
    "superlocalmemory": {
      "command": "slm",
      "args": ["mcp"]
    }
  }
}
Full MCP client compatibility →