WarpBuild LogoWarpBuild Docs

MCP Support

Model Context Protocol (MCP) integration with WarpBuild CI

Overview

MCP can be used to interact with the WarpBuild API to create runners, images, etc. Follow this guide to connect your MCP Host (Cursor, Antigravity, etc.) to WarpBuild MCP.

Step 1: Generate API Key

  1. Navigate to the WarpBuild Dashboard for creating the API Key.
  2. Set a name for your API Key and check CI.
  3. Click Generate API Key. This should open a generated key like below. Copy the API key.

API Key Dialog

Step 2: Configure MCP Server

Use the following MCP server URL and plug in your API key:

MCP Server URL: https://mcp.warpbuild.com/mcp

Configure your MCP client with:

{
  "mcpServers": {
    "warpbuild": {
      "url": "https://mcp.warpbuild.com/mcp",
      "headers": {
        "Authorization": "Bearer <API KEY you copied from step 1>"
      }
    }
  }
}

Example - Using in Cursor

  1. Navigate to Cursor.
  2. Open the command palette using CMD + Shift + P (or Ctrl+Shift+P if you are on windows/linux). Search for 'mcp settings'. Select 'View: Open MCP Settings'

Command Palette

  1. Click on the 'New MCP Server' at the bottom of the page for the MCP settings.
  2. This opens a JSON file for the MCP Configuration. Add the following content to this page. If you have some mcp configuration in this JSON, add only the warpbuild section from the below JSON.
{
  "mcpServers": {
    "warpbuild": {
      "url": "https://mcp.warpbuild.com/mcp",
      "headers": {
        "Authorization": "Bearer <API KEY you copied from step 1>"
      }
    }
  }
}
  1. Verify that MCP is working. An interaction example is in the below screenshot. MCP Interaction Example

Last updated on

On this page