AgentHubAgentHub

CrowdStrike Falcon MCP Server

MCP ServerMCP Registry官方收录

io.github.CrowdStrike/falcon-mcp · v0.11.0

Connects AI agents with CrowdStrike Falcon for security analysis and automation.

概览

CrowdStrike Falcon MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "falcon-mcp": {
      "command": "uvx",
      "args": [
        "falcon-mcp"
      ],
      "env": {
        "FALCON_CLIENT_ID": "<FALCON_CLIENT_ID>",
        "FALCON_CLIENT_SECRET": "<FALCON_CLIENT_SECRET>"
      }
    }
  }
}

环境变量

FALCON_CLIENT_ID必填secret

CrowdStrike API client ID

FALCON_CLIENT_SECRET必填secret

CrowdStrike API client secret

FALCON_BASE_URL可选

CrowdStrike API region URL

FALCON_MEMBER_CID可选

Child CID for Flight Control (MSSP) support

FALCON_MCP_MODULES可选

Comma-separated list of modules to enable

FALCON_MCP_TRANSPORT可选

Transport protocol to use

FALCON_MCP_DEBUG可选

Enable debug logging

FALCON_MCP_HOST可选

Host to bind to for HTTP transports

FALCON_MCP_PORT可选

Port to listen on for HTTP transports

FALCON_MCP_USER_AGENT_COMMENT可选

Additional information to include in the User-Agent comment section

FALCON_MCP_STATELESS_HTTP可选

Enable stateless HTTP mode for scalable deployments

FALCON_MCP_API_KEY可选secret

API key for HTTP transport authentication (x-api-key header)

相关资源

统一 Manifest

{
  "id": "io.github.CrowdStrike/falcon-mcp",
  "type": "mcp-server",
  "version": "0.11.0",
  "displayName": "CrowdStrike Falcon MCP Server",
  "description": "Connects AI agents with CrowdStrike Falcon for security analysis and automation.",
  "repository": {
    "url": "https://github.com/CrowdStrike/falcon-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "falcon-mcp",
        "version": "0.11.0",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "FALCON_CLIENT_ID",
            "description": "CrowdStrike API client ID",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "FALCON_CLIENT_SECRET",
            "description": "CrowdStrike API client secret",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "FALCON_BASE_URL",
            "description": "CrowdStrike API region URL"
          },
          {
            "name": "FALCON_MEMBER_CID",
            "description": "Child CID for Flight Control (MSSP) support"
          },
          {
            "name": "FALCON_MCP_MODULES",
            "description": "Comma-separated list of modules to enable"
          },
          {
            "name": "FALCON_MCP_TRANSPORT",
            "description": "Transport protocol to use"
          },
          {
            "name": "FALCON_MCP_DEBUG",
            "description": "Enable debug logging"
          },
          {
            "name": "FALCON_MCP_HOST",
            "description": "Host to bind to for HTTP transports"
          },
          {
            "name": "FALCON_MCP_PORT",
            "description": "Port to listen on for HTTP transports"
          },
          {
            "name": "FALCON_MCP_USER_AGENT_COMMENT",
            "description": "Additional information to include in the User-Agent comment section"
          },
          {
            "name": "FALCON_MCP_STATELESS_HTTP",
            "description": "Enable stateless HTTP mode for scalable deployments"
          },
          {
            "name": "FALCON_MCP_API_KEY",
            "description": "API key for HTTP transport authentication (x-api-key header)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.CrowdStrike/falcon-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.CrowdStrike%2Ffalcon-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
CrowdStrike Falcon MCP Server — MCP Server 安装与配置 · AgentHub