Skip to main content

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.

What You Need


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:
FieldValue
Namelanderlab
TransportHTTP (Streamable HTTP)
URLhttps://api.landerlab.dev/api/v2/mcp
Then add the following headers:
HeaderValue
X-API-Keyll_live_YOUR_KEY_HERE
Content-Typeapplication/json
Acceptapplication/json, text/event-stream
Replace ll_live_YOUR_KEY_HERE with your actual API key.

Alternative: JSON Config

If your Manus environment supports JSON-based MCP configuration:
{
  "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"
      }
    }
  }
}

Step 3: Save and Verify

Save the configuration. In a new Manus task, ask:
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 was saved correctly in settings and that the URL and headers are entered exactly as shown. 401 Unauthorized - The API key is wrong or revoked. Go to Organization > API Keys in LanderLab to check or create a new key.