Skip to main content

Install

The fastest path — one command sets up the MCP server, the skill, and the auto-capture hook:
npx -y linksee-memory setup
Requires Node.js 20+. Check your version with node --version.
Prefer to wire it up by hand? Install globally and add the config for your client below:
npm install -g linksee-memory

Configure your MCP client (manual)

Add Linksee Memory to your client’s MCP server configuration.
Run the built-in installer:
npx -y linksee-memory install-skill
Or add manually to your Claude Code MCP settings:
{
  "mcpServers": {
    "linksee-memory": {
      "command": "linksee-memory"
    }
  }
}

Verify the installation

After restarting your agent, try:
“Use linksee to remember that I prefer TypeScript over JavaScript”
The agent should call the remember tool and confirm the memory was stored. Then in a new session:
“What do I prefer, TypeScript or JavaScript? Check linksee.”
The agent should call recall and find your preference.

Database location

By default, the SQLite database is stored at:
OSPath
macOS / Linux~/.linksee-memory/memory.db
Windows%USERPROFILE%\.linksee-memory\memory.db
Override with the LINKSEE_MEMORY_DIR environment variable:
LINKSEE_MEMORY_DIR=/path/to/custom/dir linksee-memory
Or in your MCP config:
{
  "mcpServers": {
    "linksee-memory": {
      "command": "linksee-memory",
      "env": {
        "LINKSEE_MEMORY_DIR": "/path/to/custom/dir"
      }
    }
  }
}

Uninstall

npm uninstall -g linksee-memory
Your memory database at ~/.linksee-memory/memory.db is preserved. Delete it manually if you want a clean slate.