Skip to content

Quick Start

This guide gets you from zero to a working Falcon MCP Server connection in 5 minutes.

  1. Log into your CrowdStrike console
  2. Navigate to Support > API Clients and Keys
  3. 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
  4. Save your Client ID, Client Secret, and Base URL
Terminal window
uv tool install falcon-mcp

Or run without installing:

Terminal window
uvx falcon-mcp --help

Create a .env file in your working directory:

Terminal window
FALCON_CLIENT_ID=your-client-id
FALCON_CLIENT_SECRET=your-client-secret
FALCON_BASE_URL=https://api.crowdstrike.com

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

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.