LiticaLitica
Docs/Quickstart

Getting Started

Quickstart

Two ways to give your agents memory: connect an MCP client with one config block, or install the Python SDK. Same API key, same memory — pick your path.

1

Get your API key

Create a free account and mint your API key instantly from the playground. Keys follow the format lk_... — the same key works for both paths.

Create an account
2

Add Litica to your MCP client

Open your Claude Desktop config file and add the following. Replace lk_your-api-key with the key you received.

~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "litica-memory": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.litica.org/mcp/",
        "--header",
        "X-API-Key:lk_your-api-key"
      ]
    }
  }
}

Save the file and restart Claude Desktop. That is it.

Clients that speak HTTP natively (Claude Code, Cursor) can skip the mcp-remote bridge and point straight at the server:

{
  "mcpServers": {
    "litica-memory": {
      "url": "https://mcp.litica.org/mcp/",
      "headers": { "X-API-Key": "lk_your-api-key" }
    }
  }
}

You are connected.

Claude now has Litica's four memory tools: add_memory, search_memory, add_memories_batch, and add_documents. Tell Claude to remember something and it saves it, broken down by what it's about. Start a new session, ask it to recall, and it brings the right memories back, most useful first.

Next steps