Updated 2026-04-17

Getting Started

Connect your AI assistant to Multiplist in under 5 minutes. Install @multiplist/mcp-server via npm or connect directly over StreamableHTTP — then make your first vault search.


# Connect via MCP

Multiplist works as an MCP server. Connect from Claude Desktop, Claude Code, ChatGPT, or any MCP-compatible client.

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "multiplist": {
      "type": "streamable-http",
      "url": "https://multiplist.ai/mcp"
    }
  }
}

Transport: StreamableHTTP + OAuth 2.1 with PKCE. On first use, Claude opens the Multiplist login page in your browser — the token is stored automatically. No API keys to manage.

# Claude Desktop — Option B: Local bridge via npm

Install the bridge globally:

npm install -g @multiplist/mcp-server

Then add this to claude_desktop_config.json:

{
  "mcpServers": {
    "multiplist": {
      "command": "npx",
      "args": ["-y", "@multiplist/mcp-server"],
      "env": {
        "MULTIPLIST_API_KEY": "your-key-here"
      }
    }
  }
}

Generate your API key in Settings → API Keys inside the Multiplist app. The bridge forwards every call to https://multiplist.ai/mcp — no local database required.

# Claude Code

One command:

claude mcp add multiplist --transport streamable-http https://multiplist.ai/mcp

Claude Code handles OAuth automatically. When the server requires authentication, your browser opens the login page and the token is stored for future sessions.

# ChatGPT

ChatGPT connects through the Apps & Connectors interface.

  1. Open ChatGPT → Settings → Apps & Connectors.
  2. Click Add and enter the URL https://multiplist.ai/mcp/chatgpt.
  3. Set the auth method to OAuth and click Create.
  4. Log in with your Multiplist account.

Once connected, try these prompts to verify everything works:

# Key concepts

# Authentication

Multiplist supports two authentication methods:

MethodUse caseSetup
OAuth 2.1Claude Desktop, ChatGPT, remote clientsAutomatic — opens the Multiplist login page on first connect
MCP Tokenstdio transport, scripts, CI/CDGenerate in Settings → MCP Tokens

MCP tokens use the mp_live_ prefix, are SHA-256 hashed at rest, and support scoped permissions. Tokens are shown only once at creation — store them securely.

# Next steps