You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`server.address`|`STACKROX_MCP__SERVER__ADDRESS`| string | No |`0.0.0.0`| HTTP server listen address |
100
-
|`server.port`|`STACKROX_MCP__SERVER__PORT`| int | No |`8080`| HTTP server listen port (must be 1-65535) |
99
+
|`server.type`|`STACKROX_MCP__SERVER__TYPE`| string | No |`streamable-http`| Server transport type: `streamable-http` (HTTP server) or `stdio` (stdio transport). **Note**: stdio transport requires `central.auth_type` to be set to `static`|
100
+
|`server.address`|`STACKROX_MCP__SERVER__ADDRESS`| string | No |`0.0.0.0`| HTTP server listen address (only applies when `server.type` is `http`) |
101
+
|`server.port`|`STACKROX_MCP__SERVER__PORT`| int | No |`8080`| HTTP server listen port (must be 1-65535, only applies when `server.type` is `http`) |
101
102
102
103
#### Tools Configuration
103
104
@@ -138,7 +139,9 @@ The server will start on `http://0.0.0.0:8080` by default (configurable via `ser
138
139
139
140
### Connecting with Claude Code CLI
140
141
141
-
Add the MCP server to Claude Code using command-line options:
142
+
#### HTTP Transport
143
+
144
+
Add the MCP server to Claude Code using HTTP transport:
142
145
143
146
```bash
144
147
claude mcp add stackrox \
@@ -147,6 +150,22 @@ claude mcp add stackrox \
147
150
--url http://localhost:8080
148
151
```
149
152
153
+
#### Stdio Transport
154
+
155
+
Add the MCP server to Claude Code using stdio transport with static authentication:
**Important**: Stdio transport requires static authentication (`central.auth_type=static`). Passthrough authentication is not supported with stdio transport.
0 commit comments