-
Notifications
You must be signed in to change notification settings - Fork 54
Quick Start
Joshua Hiller edited this page May 15, 2026
·
3 revisions
This guide gets you from zero to a working Falcon MCP Server connection in 5 minutes.
- Log into your CrowdStrike console
- Navigate to Support > API Clients and Keys
- Click Add new API client and configure:
- Give it a name (e.g., "Falcon MCP Server")
- Enable at minimum:
Hosts: READ,Alerts: READ,Incidents: READ
- Save your Client ID, Client Secret, and Base URL
uv tool install falcon-mcpOr run without installing:
uvx falcon-mcp --helpCreate a .env file in your working directory:
FALCON_CLIENT_ID=your-client-id
FALCON_CLIENT_SECRET=your-client-secret
FALCON_BASE_URL=https://api.crowdstrike.comAdd to your editor's MCP configuration (e.g., Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"falcon-mcp": {
"command": "uvx",
"args": [
"--env-file",
"/path/to/.env",
"falcon-mcp"
]
}
}
}In your AI assistant, ask:
"Check connectivity to the Falcon API"
The server will call falcon_check_connectivity and confirm the connection.
"List all enabled modules"
You should see all 16 modules listed.
- CLI Commands — all command-line options
- Editor Integration — full config examples for popular clients
- Module Overview — explore available tools
