This is an implementation of an MCP (Model Context Protocol) Server to allow different LLMs to query information from Sysdig Secure platform. It is still in early development and not yet ready for production use. New endpoints and functionalities will be added over time. The goal is to provide a simple and easy-to-use interface for querying information from Sysdig Secure platform using LLMs.
Events Feed
Tool Name | Description | Sample Prompt |
---|---|---|
get_event_info |
Retrieve detailed information for a specific security event by its ID | "Get full details for event ID 123abc" |
list_runtime_events |
List runtime security events with optional filters | "Show me high severity events from the last 2 hours in cluster1" |
get_event_process_tree |
Retrieve the process tree for a specific event (if available) | "Get the process tree for event ID abc123" |
Inventory
Tool Name | Description | Sample Prompt |
---|---|---|
list_resources |
List inventory resources using filters (e.g., platform or category) | "List all exposed IAM resources in AWS" |
get_resource |
Get detailed information about an inventory resource by its hash | "Get inventory details for hash abc123" |
Vulnerability Management
Tool Name | Description | Sample Prompt |
---|---|---|
list_runtime_vulnerabilities |
List runtime vulnerability scan results with filtering | "List running vulnerabilities in cluster1 sorted by severity" |
list_accepted_risks |
List all accepted vulnerability risks | "Show me all accepted risks related to nginx containers" |
get_accepted_risk |
Retrieve a specific accepted risk by ID | "Get details for accepted risk id abc123" |
list_registry_scan_results |
List scan results for container registries | "List failed scans from harbor registry" |
get_vulnerability_policy_by_id |
Get a specific vulnerability policy by ID | "Show policy ID 42" |
list_vulnerability_policies |
List all vulnerability policies | "List all vulnerability policies for pipeline stage" |
list_pipeline_scan_results |
List CI pipeline scan results | "Show me pipeline scans that failed for ubuntu images" |
get_scan_result |
Retrieve detailed scan results by scan ID | "Get results for scan ID 456def" |
Sysdig Sage
Tool Name | Description | Sample Prompt |
---|---|---|
sysdig_sysql_sage_query |
Generate and run a SysQL query using natural language | "List top 10 pods by memory usage in the last hour" |
You can use uv as a drop-in replacement for pip to create the virtual environment and install dependencies.
If you don't have uv
installed, you can install it via (Linux and MacOS users):
curl -Ls https://astral.sh/uv/install.sh | sh
To set up the environment:
uv venv
source .venv/bin/activate
This will create a virtual environment using uv
and install the required dependencies.
You will need the Sysdig-SDK. You can find it in the build
directory as a .tar.gz
file that will be used by UV to install the package.
The application can be configured via the app_config.yaml
file and environment variables.
This file contains the main configuration for the application, including:
- app: Host, port, and log level for the MCP server.
- sysdig: The Sysdig Secure host to connect to.
- mcp: Transport protocol (stdio, sse, streamable-http), URL, host, and port for the MCP server.
The following environment variables are required for configuring the Sysdig SDK:
SYSDIG_HOST
: The URL of your Sysdig Secure instance (e.g.,https://secure.sysdig.com
).SYSDIG_SECURE_API_TOKEN
: Your Sysdig Secure API token.
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.
You can set these variables in your shell or in a .env
file.
You can also use MCP_TRANSPORT
to override the transport protocol set in app_config.yaml
.
You can run the MCP server using either Docker or uv
.
To run the server using Docker, you first need to build the image:
docker build -t sysdig-mcp-server .
Then, you can run the container, making sure to pass the required environment variables:
docker run -e SYSDIG_HOST=<your_sysdig_host> -e SYSDIG_SECURE_API_TOKEN=<your_sysdig_secure_api_token> -p 8080:8080 sysdig-mcp-server
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
:
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
To run the server using uv
, first set up the environment as described in the UV Setup section. Then, run the main.py
script:
uv run main.py
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
:
MCP_TRANSPORT=streamable-http uv run main.py
To use the MCP server with a client like Claude or Cursor, you need to provide the server's URL and authentication details.
When using the sse
or streamable-http
transport, the server requires a Bearer token for authentication. The token is passed in the Authorization
header of the HTTP request.
Additionally, you can specify the Sysdig Secure host by providing the X-Sysdig-Host
header. If this header is not present, the server will use the value from app_config.yaml
.
Example headers:
Authorization: Bearer <your_sysdig_secure_api_token>
X-Sysdig-Host: <your_sysdig_host>
If you are running the server with the sse
or streamable-http
transport, the URL will be http://<host>:<port>/sysdig-mcp-server/mcp
, where <host>
and <port>
are the values configured in app_config.yaml
or the Docker run command.
For example, if you are running the server locally on port 8080, the URL will be http://localhost:8080/sysdig-mcp-server/mcp
.
For the Claude Desktop app, you can manually configure the MCP server by editing the claude_desktop_config.json
file. This is useful for running the server locally with the stdio
transport.
-
Open the configuration file:
- Go to Settings > Developer in the Claude Desktop app.
- Click on Edit Config to open the
claude_desktop_config.json
file.
-
Add the MCP server configuration:
- Add the following JSON object to the
mcpServers
section of the file.
{ "mcpServers": { "sysdig-mcp-server": { "command": "uv", "args": [ "--directory", "<path_to_your_sysdig_mcp_server_directory>", "run", "main.py" ], "env": { "SYSDIG_HOST": "<your_sysdig_host>", "SYSDIG_SECURE_API_TOKEN": "<your_sysdig_secure_api_token>", "MCP_TRANSPORT": "stdio" } } } }
- Add the following JSON object to the
-
Replace the placeholders:
- Replace
<your_sysdig_host>
with your Sysdig Secure host URL. - Replace
<your_sysdig_secure_api_token>
with your Sysdig Secure API token. - Replace
<path_to_your_sysdig_mcp_server_directory>
with the absolute path to thesysdig-mcp-server
directory.
- Replace
-
Save the file and restart the Claude Desktop app for the changes to take effect.