惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

Sysdig Blog

Masterclass: AI is more than ChatGPT and LLMs CVE-2026-39987 update: How attackers weaponized marimo to deploy a blockchain botnet via HuggingFace Kubernetes 1.36 - New security features 5 steps to securing AI workloads Marimo OSS Python Notebook RCE: From Disclosure to Exploitation in Under 10 Hours Security briefing: March 2026 The Sysdig MCP server is now available in AWS Marketplace Risk isn’t reduced until you take action: How teams resolve issues in the cloud AI infrastructure security: Why it deserves its own category Three pillars for building effective runtime-powered cloud defense, the right way Closing the cloud security gap with runtime security Seeing risk isn’t stopping it: Why visibility alone isn’t enough TeamPCP expands: Supply chain compromise spreads from Trivy to Checkmarx GitHub Actions AI coding agents are running on your machines — Do you know what they're doing? Runtime security for AI coding agents: Protecting AI-assisted development How runtime insights power every cloud security use case CVE-2026-33017: How attackers compromised Langflow AI pipelines in 20 hours Inline Cloud Response: Accelerating AWS threat containment for SOC teams Runtime malware detection for AWS Fargate Detecting CVE-2026-3288 & CVE-2026-24512: Ingress-nginx configuration injection vulnerabilities for Kubernetes Malware detection with Sysdig Security briefing: February 2026 Leveling up Kubernetes Posture: From baselines to risk-aware admission Eliminating runtime blind spots: How CleanStart and Sysdig build continuous trust across the container lifecycle LLMjacking: From Emerging Threat to Black Market Reality Real risks live at runtime: Why CISOs must care about deep telemetry in 2026 Sysdig named a Leader in the Forrester Wave™: Cloud Native Application Protection Solutions, Q1 2026 How to run rootless containers AI-assisted cloud intrusion achieves admin access in 8 minutes Security briefing: January 2026
Shifting left with AI and MCP: Sysdig + Amazon Q Developer
Dan Belmonte · 2025-11-12 · via Sysdig Blog

Nowadays, with the growth of AI usage, companies are seeing an increase of Model Context Protocol (MCP) servers due to the requirements for integration with LLMs. With the recent launch of the Sysdig MCP server, we have been working with different use cases, and as expected, the possibilities are endless.

In fact, we already have another blog post where we show what you can accomplish when prompting with two MCPs together. For this blog post, we will focus on using Amazon Q Developer with the Sysdig MCP server.

Why pre-deployment matters

Developers, platform engineers, and SREs deploy code rapidly, and AI tools are accelerating that pace even faster. But speed without security creates risk: cloud breaches frequently start by exploiting Infrastructure as Code (IaC) misconfigurations.

This is where the "shift-left" approach becomes critical, as it catches security issues during development, not after deployment.

To help secure IaC, you can bring security scanning directly into your IDE using the Model Context Protocol (MCP). For example, by connecting Amazon Q Developer with Sysdig's MCP server, you can identify vulnerabilities, catch misconfigurations, and review your security posture before they become production threats – all through conversational prompts in your code editor.

In this post, we'll explore practical workflows for scanning infrastructure code, analyzing container images, and understanding potential attack paths-all without leaving your development environment.

The building blocks

  • AWS account with access to Amazon Q Developer (Free tier)
  • An IDE: VS Code
  • Amazon Q Developer plugin for VS Code
  • Sysdig MCP server downloaded locally

This is the detailed configuration that can be used within the MCP Server settings in the Amazon Q plugin:

Name: SysdigMCP
Transport: stdio
Command: <uv-binary-path> (e.g., /usr/<username>/.nix-profile/bin/uv)

# Arguments - optional
--directory
<sysdig-mcp-server-directory>
run
main.py

# Environment variables - optional
SYSDIG_MCP_API_HOST=<SYSDIG-SAAS-URL> (e.g., https://secure.sysdig.com)
SYSDIG_MCP_API_SECURE_TOKEN=<API-ACCOUNT-TOKEN>
SYSDIG_MCP_TRANSPORT=stdio

Use cases

Context

Here we have a simple project with different kinds of files (CloudFormation, Helm Chart values, scripts, Lambda, etc.) that will be used for our use cases. Below is an overview of the directory structure:

This online-shop directory will be the one that we will configure as “Context” to Amazon Q whenever we ask any question.

Workflows in action

We'll step into the role of a Site Reliability Engineer working with IaC configurations for microservices hosted in AWS. Let’s imagine you have been asked to add new features to the microservices already deployed, but you want to ensure your infrastructure changes don’t introduce security vulnerabilities.

Now, we will proceed to analyze different themes using Amazon Q and the Sysdig MCP server within the VS Code IDE.

Scanning my local code for IaC misconfigurations

Let’s review if we have any misconfigurations within our IaC files so we are not introducing any new risks without knowing it.

Use the Sysdig IAC scanner to scan my project and AmazonQ for the CloudFormation templates, then share a summary of the issues found.

Finding vulnerabilities in container images

Before deploying our changes, we need to know if there are any vulnerabilities in our container images. Software Composition Analysis (SCA) usually happens in the CI/CD pipeline, but we can do it earlier instead of waiting for builds and potentially blocking issues.

Use Sysdig CLI to scan the docker image pointed by the juice-shop-helm-values.yaml

Reviewing our baseline: What’s already deployed?

Even if our code is perfectly secure, deploying into an environment with existing vulnerabilities could create unexpected attack paths (e.g., deploying a secure microservice that uses a compromised S3 bucket). Hence, it is critical to review our environment and, if necessary, fix first, deploy second.

Use Sysdig to summarize the current EKS and S3 security posture in AWS us-east-1. 
- Return only aggregated results: counts by severity and status, top 5 misconfigurations, and top 5 affected resources (name + count).
- Do not list raw findings or evidence. Keep the output small and sensible.
- If more details are needed, suggest next drill-downs (e.g. top 10 High/Critical findings).

As the output, we can see that it shares a nice representation of our current posture by querying the Sysdig MCP:

Analyzing future posture: What happens when we deploy?

We already validated our code locally and reviewed what is currently deployed (posture). Now let’s predict the security implications before deploying our code (will introduce new risks, new attack paths, or improve the security posture?

Tracing attack paths after deployment

By analyzing potential attack paths, we are doing something similar to the previous workflow, but now understanding how it could be exploited. This will reveal how those findings connect to create a potential exploitable chain.

Ask Sysdig what are the current top risks in us-east-1. Use that information to see if there could be an attack path if I deploy all resources from the project. ‍
Return only aggregated results with limit 5.

Amazon Q shared a very interesting report showing potential exploitable paths in our “online-shop” project:

Final thoughts

The combination of Model Context Protocol (MCP) servers and AI opens up a great variety of use cases for combining tools that were previously harder to combine.

By pairing Amazon Q and Sysdig in VS Code, you can empower your shift-left approach by hunting IaC misconfigurations, vulnerabilities, and potential attack paths before your code gets into a CI/CD pipeline. But it goes beyond that - you can even predict your future security posture and impact – all from your IDE.

That’s why testing new MCPs can unlock new use cases you may not have tried before, because the barrier to integrating different technologies has dropped significantly thanks to the MCP. It's worth exploring what other MCP servers could enhance your workflow.

What’s next?

Try Sysdig MCP Server today and combine it with the Amazon Q Developer plugin for VS Code so you can test these workflows and unlock even other ones which we haven’t discussed here.