Quick Start
This guide gets you from zero to a working Falcon MCP Server connection in 5 minutes.
Step 1: Get API Credentials
Section titled “Step 1: Get API Credentials”- 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
Step 2: Install
Section titled “Step 2: Install”uv tool install falcon-mcpOr run without installing:
uvx falcon-mcp --helpStep 3: Configure Credentials
Section titled “Step 3: Configure Credentials”Create a .env file in your working directory:
FALCON_CLIENT_ID=your-client-idFALCON_CLIENT_SECRET=your-client-secretFALCON_BASE_URL=https://api.crowdstrike.comStep 4: Connect to Your Editor
Section titled “Step 4: Connect to Your Editor”Add 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" ] } }}Step 5: Verify the Connection
Section titled “Step 5: Verify the Connection”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.
Next Steps
Section titled “Next Steps”- CLI Commands — all command-line options
- Editor Integration — full config examples for popular clients
- Module Overview — explore available tools