dropdat MCP server for Claude Code

Give Claude Code long-term, cross-session memory. Recall past conversations, save the current one, drop context into any AI client — all from inside Claude Code. Built for Anthropic's terminal coding agent — works from any project directory and survives across sessions.

Hybrid semantic recall

Vector cosine + BM25 fused with RRF. Asks in any phrasing, finds capsules that used different words.

Five MCP tools

dropdat_recall, dropdat_read, dropdat_list, dropdat_capsule, dropdat_autocapsule — all the surface an agent needs.

Cross-AI capsules

The same capsule library is reachable from Claude Code, Cursor, Cline, Claude Desktop, ChatGPT, Claude, Gemini.

Owned data

Capsules live in your dropdat library. Postgres + pgvector. Export anytime.

Install in Claude Code

Two steps. Under a minute. No fork, no proxy.

  1. 01

    Get a dropdat API key

    Sign in at capsule.dropdat.app/api-keys and create a token (shape dk_live_…).

  2. 02

    Install @dropdat/mcp

    claude mcp add dropdat \
      --env DROPDAT_API_KEY=dk_live_xxx \
      --env DROPDAT_API_BASE=https://dropdat.app \
      -- npx -y @dropdat/mcp
  3. 03

    Drop config into ~/.claude/mcp.json (or project .mcp.json)

    {
      "mcpServers": {
        "dropdat": {
          "command": "npx",
          "args": ["-y", "@dropdat/mcp"],
          "env": {
            "DROPDAT_API_KEY": "dk_live_xxx",
            "DROPDAT_API_BASE": "https://dropdat.app"
          }
        }
      }
    }
  4. 04

    Verify

    Run /mcp inside Claude Code — the dropdat server appears with all five tools (dropdat_recall, dropdat_read, dropdat_list, dropdat_capsule, dropdat_autocapsule).

What you can ask Claude Code now

Once wired in, any of these prompts route through dropdat tools.

Related guides

Wire Claude Code into your dropdat library.