STDIO MCP Server Configuration

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

Visual Studio Code

  1. Open the preferences and search for MCP

  2. Click on Add ServerCommand (stdio)

  3. Enter the command (Eg: npx) and name as falcon-scan-mcp-server

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

  5. Add the following arguments accesstoken, *serverurl.

  6. To generate a token, refer token generation

  7. The final configuration should look something like

"falcon-scan-mcp-server": {
    "command": "npx",
    "args": [
        "-y",
        "--registry=https://npm.integralzone.com",
        "falcon-scan-mcp",
        "--accesstoken",
        "<Token Generated from Falcon Suite>",
        "--serverurl",
        "<http(s)://YOUR_HOST_NAME>"
    ],
    "type": "stdio"
}