forked from CrowdStrike/falcon-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
122 lines (122 loc) · 3.63 KB
/
Copy pathserver.json
File metadata and controls
122 lines (122 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.CrowdStrike/falcon-mcp",
"title": "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",
"id": "999737146"
},
"version": "0.12.0",
"packages": [
{
"registryType": "pypi",
"identifier": "falcon-mcp",
"version": "0.12.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "FALCON_CLIENT_ID",
"description": "CrowdStrike API client ID",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "FALCON_CLIENT_SECRET",
"description": "CrowdStrike API client secret",
"format": "string",
"isRequired": true,
"isSecret": true
},
{
"name": "FALCON_BASE_URL",
"description": "CrowdStrike API region URL",
"format": "string",
"default": "https://api.crowdstrike.com",
"placeholder": "https://api.crowdstrike.com",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MEMBER_CID",
"description": "Child CID for Flight Control (MSSP) support",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_MODULES",
"description": "Comma-separated list of modules to enable",
"format": "string",
"placeholder": "detections,incidents,hosts",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_TRANSPORT",
"description": "Transport protocol to use",
"format": "string",
"default": "stdio",
"choices": [
"stdio",
"sse",
"streamable-http"
],
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_DEBUG",
"description": "Enable debug logging",
"format": "boolean",
"default": "false",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_HOST",
"description": "Host to bind to for HTTP transports",
"format": "string",
"default": "127.0.0.1",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_PORT",
"description": "Port to listen on for HTTP transports",
"format": "number",
"default": "8000",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_USER_AGENT_COMMENT",
"description": "Additional information to include in the User-Agent comment section",
"format": "string",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_STATELESS_HTTP",
"description": "Enable stateless HTTP mode for scalable deployments",
"format": "boolean",
"default": "false",
"isRequired": false,
"isSecret": false
},
{
"name": "FALCON_MCP_API_KEY",
"description": "API key for HTTP transport authentication (x-api-key header)",
"format": "string",
"isRequired": false,
"isSecret": true
}
]
}
]
}