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.

Environment variables

VariableDefaultDescription
LINKSEE_MEMORY_DIR~/.linksee-memoryDirectory for the SQLite database file
The database file is always named memory.db inside the configured directory.

MCP client configuration

Basic setup

{
  "mcpServers": {
    "linksee-memory": {
      "command": "linksee-memory"
    }
  }
}

Custom database location

{
  "mcpServers": {
    "linksee-memory": {
      "command": "linksee-memory",
      "env": {
        "LINKSEE_MEMORY_DIR": "/path/to/custom/dir"
      }
    }
  }
}

Multiple instances

You can run separate memory stores for different contexts:
{
  "mcpServers": {
    "linksee-work": {
      "command": "linksee-memory",
      "env": {
        "LINKSEE_MEMORY_DIR": "~/.linksee-memory/work"
      }
    },
    "linksee-personal": {
      "command": "linksee-memory",
      "env": {
        "LINKSEE_MEMORY_DIR": "~/.linksee-memory/personal"
      }
    }
  }
}

MCP capabilities

Server declares

{
  "tools": {},
  "resources": { "subscribe": false, "listChanged": false },
  "prompts": { "listChanged": false }
}

Client capabilities used (optional)

CapabilityUsed byFallback
sampling/createMessageconsolidate with use_llm: trueHeuristic summarization
roots/listrecall_file with scope_to_roots: trueNo filtering
elicitation/createforget with interactive: trueSkips confirmation
All three degrade gracefully when the client does not support them.