STDIO MCP Server Configuration

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

Visual Studio Code

  • Open the preferences and search for MCP

  • Click on Add ServerCommand (stdio)

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

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

  • Add the following arguments accesstoken, *serverurl.

  • To generate a token, refer token generation

  • 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"
}

Cursor IDE

  • Open the preferences and search for MCP

  • Click on View: Open MCP Settings

  • In the settings screen click on New MCP Server and add the below configuration:

    "falcon-scan-cli-mcp-server": {
        "command": "node",
        "args": [
            "-y",
            "--registry=https://npm.integralzone.com",
            "falcon-scan-mcp",
            "--accesstoken",
            "<Token Generated from Falcon Suite>",
            "--serverurl",
            "<http(s)://YOUR_HOST_NAME>"
        ]
    }
  • To generate a token, refer token generation

  • Save the mcp.json file.

  • Navigate back to Cursor Settings tab and toggle the enable switch. cursor mcp

Claude Desktop

  • Navigate to SettingsDeveloper and click on edit config.

  • Edit the claude_desktop_config.json file and add the following contents under mcpServers tag:

    "falcon-scan-cli-mcp-server": {
        "command": "node",
        "args": [
            "-y",
            "--registry=https://npm.integralzone.com",
            "falcon-scan-mcp",
            "--accesstoken",
            "<Token Generated from Falcon Suite>",
            "--serverurl",
            "<http(s)://YOUR_HOST_NAME>"
        ]
    }
  • To generate a token, refer token generation.

  • Save the claude_desktop_config.json file.

  • Restart Claude Desktop

  • Navigate to SettingsDeveloper and if every thing is configured correctly, the status should be running. claude mcp