Skip to content

Commit 7432eb4

Browse files
committed
Update version for release
1 parent 1d56fc7 commit 7432eb4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ This file contains the main configuration for the application, including:
9494
The following environment variables are required for configuring the Sysdig SDK:
9595

9696
- `SYSDIG_HOST`: The URL of your Sysdig Secure instance (e.g., `https://secure.sysdig.com`).
97-
- `SYSDIG_SECURE_API_TOKEN`: Your Sysdig Secure API token.
97+
- `SYSDIG_SECURE_TOKEN`: Your Sysdig Secure API token.
9898

9999
You can find your API token in the Sysdig Secure UI under **Settings > Sysdig Secure API**. Make sure to copy the token as it will not be shown again.
100100

@@ -120,13 +120,13 @@ docker build -t sysdig-mcp-server .
120120
Then, you can run the container, making sure to pass the required environment variables:
121121

122122
```bash
123-
docker run -e SYSDIG_HOST=<your_sysdig_host> -e SYSDIG_SECURE_API_TOKEN=<your_sysdig_secure_api_token> -p 8080:8080 sysdig-mcp-server
123+
docker run -e SYSDIG_HOST=<your_sysdig_host> -e SYSDIG_SECURE_TOKEN=<your_sysdig_secure_api_token> -p 8080:8080 sysdig-mcp-server
124124
```
125125

126126
By default, the server will run using the `stdio` transport. To use the `streamable-http` or `sse` transports, set the `MCP_TRANSPORT` environment variable to `streamable-http` or `sse`:
127127

128128
```bash
129-
docker run -e MCP_TRANSPORT=streamable-http -e SYSDIG_HOST=<your_sysdig_host> -e SYSDIG_SECURE_API_TOKEN=<your_sysdig_secure_api_token> -p 8080:8080 sysdig-mcp-server
129+
docker run -e MCP_TRANSPORT=streamable-http -e SYSDIG_HOST=<your_sysdig_host> -e SYSDIG_SECURE_TOKEN=<your_sysdig_secure_api_token> -p 8080:8080 sysdig-mcp-server
130130
```
131131

132132
### UV
@@ -190,7 +190,7 @@ For the Claude Desktop app, you can manually configure the MCP server by editing
190190
],
191191
"env": {
192192
"SYSDIG_HOST": "<your_sysdig_host>",
193-
"SYSDIG_SECURE_API_TOKEN": "<your_sysdig_secure_api_token>",
193+
"SYSDIG_SECURE_TOKEN": "<your_sysdig_secure_api_token>",
194194
"MCP_TRANSPORT": "stdio"
195195
}
196196
}
@@ -219,7 +219,7 @@ For the Claude Desktop app, you can manually configure the MCP server by editing
219219
],
220220
"env": {
221221
"SYSDIG_HOST": "<your_sysdig_host>",
222-
"SYSDIG_SECURE_API_TOKEN": "<your_sysdig_secure_api_token>",
222+
"SYSDIG_SECURE_TOKEN": "<your_sysdig_secure_api_token>",
223223
"MCP_TRANSPORT": "stdio"
224224
}
225225
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sysdig-mcp-server"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Sysdig MCP Server"
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)