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 Server→Command (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"
}