> ## 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 Manus

> Connect your LanderLab account to Manus using MCP. Add the server URL, sign in once, and start managing landers from your Manus tasks.

## What You Need

* A LanderLab account.
* Access to a Manus workspace.

***

## Step 1: Open MCP Settings

In Manus, go to **Settings > MCP Servers** (or **Integrations > MCP**) and click **Add Server**.

***

## Step 2: Configure the Server

Fill in the connection details:

| Field              | Value                           |
| ------------------ | ------------------------------- |
| **Name**           | `landerlab`                     |
| **Transport**      | `HTTP (Streamable HTTP)`        |
| **URL**            | `https://api.landerlab.dev/mcp` |
| **Authentication** | `OAuth`                         |

No API key and no custom headers are needed.

***

## Step 3: Sign In

Save the server. Manus prompts you to authorize the connection and opens a LanderLab sign-in page. Log in, review the access request, and click **Authorize**.

***

## Alternative: JSON Config

If your Manus environment supports JSON-based MCP configuration:

```json theme={null}
{
  "mcpServers": {
    "landerlab": {
      "type": "http",
      "url": "https://api.landerlab.dev/mcp"
    }
  }
}
```

You will still be prompted to sign in the first time the server is used.

***

## Step 4: Verify

In a new Manus task, ask:

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

If connected correctly, Manus will call `workspaces_list` and return your results.

***

## Example Prompts

* "List all my landers and their publish status"
* "Show analytics for lander X over the last 7 days"
* "Set A/B test weights to 80/20 for lander X"
* "Show all leads from workspace 1"

***

## Troubleshooting

**Tools not showing in Manus tasks** - Check that the server saved correctly in settings and that the authorization step completed. Reopen the server entry to confirm its status.

**Authorization window does not open** - Allow pop-ups for Manus in your browser and retry the connection.

**401 Unauthorized** - Your session expired or access was revoked in LanderLab. Reconnect the server to sign in fresh.

**Migrating from the API key setup** - Delete the old server that used `https://api.landerlab.dev/api/v2/mcp` with an `X-API-Key` header, then add the new one.
