HTTP MCP Server Configuration

The following section describes the steps required to configure the Falcon HTTP MCP server in various IDEs.

Visual Studio Code

  1. Open the preferences and search for MCP

  2. Click on Add ServerHTTP (HTTP or Server-side Events)

  3. Enter the URL (Eg: http(s)://<YOUR_HOST_NAME>/mcp and click enter) and name as falcon-suite-mcp-server

  4. A mcp.json file with the entered details will be opened

  5. Add the following headers x-falcon-service-url, x-falcon-access-token.

  6. To generate a token, refer token generation

  7. The final configuration should look something like

"falcon-suite-mcp-server": {
    "url": "http(s)://<YOUR_HOST_NAME>/mcp",
    "type": "http",
    "headers": {
        "x-falcon-service-url": "http(s)://<YOUR_HOST_NAME>",
        "x-falcon-access-token": "<Token Generated from Falcon Suite>"
    }
}