Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.linksee.app/llms.txt

Use this file to discover all available pages before exploring further.

Install the package

npm install -g linksee-memory
Requires Node.js 20+. Check your version with node --version.

Configure your MCP client

Add Linksee Memory to your client’s MCP server configuration.
Run the built-in installer:
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.