> ## Documentation Index
> Fetch the complete documentation index at: https://docs.landerlab.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect LanderLab MCP to Claude Desktop

> Connect your LanderLab account to Claude Desktop using MCP. Edit the config file once and manage landing pages, analytics, and leads directly from your AI assistant." icon: "desktop

## What You Need

* A LanderLab API key. See [Generate an API Key](/mcp/generate-api-key).
* Claude Desktop installed on macOS or Windows.

***

## Step 1: Open the Config File

Find your `claude_desktop_config.json` file:

* **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
* **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`

If the file does not exist, create it.

***

## Step 2: Add the LanderLab Server

Paste the following into the file. If the file already has content, add the `landerlab` block inside the existing `mcpServers` object.

```json theme={null}
{
  "mcpServers": {
    "landerlab": {
      "type": "http",
      "url": "https://api.landerlab.dev/api/v2/mcp",
      "headers": {
        "Content-Type": "application/json",
        "Accept": "application/json, text/event-stream",
        "X-API-Key": "ll_live_YOUR_KEY_HERE"
      }
    }
  }
}
```

Replace `ll_live_YOUR_KEY_HERE` with your actual API key.

***

## Step 3: Restart Claude Desktop

Close and reopen the app. LanderLab tools will be available in your next conversation.

***

## Verify the Connection

Start a new conversation and ask:

```text theme={null}
List my LanderLab workspaces
```

If the tools are connected correctly, Claude Desktop will call `workspaces_list` and return your results.

***

## Example Prompts

* "List all my landers and their status"
* "Show analytics for lander X over the last 7 days"
* "Unpublish lander X"
* "Show all leads from workspace 1"

***

## Troubleshooting

**LanderLab tools not showing up** - Check that the JSON in your config file is valid (no missing commas or brackets). Make sure you restarted Claude Desktop after saving.

**401 Unauthorized** - The API key is wrong or revoked. Go to **Organization > API Keys** in LanderLab to check or create a new key.
