Skip to content

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.

Step 1: Get API Credentials

  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

Step 2: Install

uv tool install falcon-mcp

Or run without installing:

uvx falcon-mcp --help

Step 3: Configure Credentials

Create 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.com

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

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

Clone this wiki locally