{
  "info": {
    "name": "Landbot — mcp.ai",
    "description": "REST API for the Landbot MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/landbot",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "landbot_delete_bot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/bot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "bot"
          ]
        },
        "description": "Tool to delete a specific bot from your account. Use when you need to remove an unused or test bot after confirming the bot ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_get_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "brand"
          ]
        },
        "description": "Tool to retrieve your brand data including contact information and settings. Use when you need to access brand profile details, configuration, or contact information.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_list_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "agents"
          ]
        },
        "description": "Tool to retrieve a list of agents in your Landbot account. Use after authenticating your account to enumerate all agents and their details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_list_bots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bots"
          ]
        },
        "description": "Tool to list all bots in your Landbot account. Use after authenticating to discover your configured bots.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_list_channels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/channels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "channels"
          ]
        },
        "description": "Tool to list all channels integrated with your account. Use after authenticating your account to enumerate available messaging channels and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_list_customers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/customers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "customers"
          ]
        },
        "description": "Tool to list customers who have interacted with your bot. Use when you need to retrieve customer records with optional filters (channel_id, opt_in, search) and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"opt_in\": false,\n  \"search\": \"\",\n  \"search_by\": \"\",\n  \"channel_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_list_whatsapp_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/whatsapp/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "whatsapp",
            "templates"
          ]
        },
        "description": "Tool to list all WhatsApp message templates available for the account. Use after obtaining your WhatsApp channel ID to fetch template IDs and parameter counts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"channel_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_replace_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replace/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replace",
            "agent"
          ]
        },
        "description": "Tool to replace all data for a specific agent (full update). Use when you need to update agent information like name or password.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"agent_id\": \"\",\n  \"password\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"password_confirmation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_replace_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replace/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replace",
            "brand"
          ]
        },
        "description": "Tool to replace or update brand data with a full update (PUT operation). Use when you need to change company branding information in your Landbot account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"name\": \"\",\n  \"phone\": \"\",\n  \"address\": \"\",\n  \"country\": \"\",\n  \"zipcode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_send_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "message"
          ]
        },
        "description": "Tool to send a plain text outbound message to a Landbot customer. Use when you need to reply to or continue a support chat with a known customer_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message\": \"\",\n  \"customer_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_set_agent_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/agent/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "agent",
            "status"
          ]
        },
        "description": "Tool to change your agent status to online, offline, or busy. Use when you need to update your availability status in Landbot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_update_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "agent"
          ]
        },
        "description": "Tool to update an agent's information in your Landbot account. Use when you need to modify agent details such as name, email, or password. This performs a partial update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"agent_id\": \"\",\n  \"password\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"password_confirmation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "landbot_update_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "brand"
          ]
        },
        "description": "Tool to partially update your brand data in Landbot. Use when you need to modify brand information such as name, phone, address, city, zipcode, or country.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"name\": \"\",\n  \"phone\": \"\",\n  \"address\": \"\",\n  \"country\": \"\",\n  \"zipcode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}