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

推荐订阅源

博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
博客园 - 聂微东
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
IT之家
IT之家
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
爱范儿
爱范儿
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
F
Fortinet All Blogs
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your AI Agent is a Security Analyst, Not Just a Coder
Renato Marinho · 2026-06-25 · via DEV Community

Renato Marinho

I spent the last week trying to see how far I could push an AI agent into my security workflow without it becoming a liability.

We’ve all been there: A critical CVE drops, or a compliance audit looms, and suddenly your afternoon is gone. You're jumping between the Aikido dashboard, AWS CloudWatch, GitHub security alerts, and your Jira backlog. It’s not just the work that’s exhausting; it’s the context switching. Every time you switch tabs, you lose a bit of the mental model of your actual attack surface.

When MCP (Model Context Protocol) first started gaining traction, most people saw it as a way to let Claude read their local files or hit a simple weather API. But when I connected the Aikido Security MCP via Vinkually, the conversation shifted from "writing code" to "investigating posture."

The Death of the Dashboard-First Workflow

The traditional way we handle security is reactive and dashboard-centric. You wait for a notification, you log in, you click through filters, you export a CSV. It’s high friction.

What I noticed—something that isn't obvious if you just read the tool definitions—is that the real value of an MCP server like Aikido isn't the ability to 'list issues.' It's the ability to correlate disparate security domains through natural language.

I wasn't just asking, "What are my open issues?" I was asking questions that require looking at three different layers of infrastructure simultaneously. For example: "Looking at our recent container vulnerabilities found in Aikido, which of these affect assets currently running in our production AWS accounts, and do any of these failures impact our SOC2 compliance status?"

To answer that, the agent isn't just fetching a list; it’s performing a multi-step investigative loop. It hits list_open_issues, then cross-references those with list_cloud_assets and list_containers, and finally checks the get_soc2_compliance endpoint to see if the failing controls overlap with the vulnerable assets.

In a traditional workflow, that's a 30-minute manual investigation. With an agent having 'hands' via MCP, it’s a 15-second query.

The "Hands" Problem: Security vs. Utility

There is a very real tension here. As I wrote in one of my recent posts on Dev.to, connecting an MCP server gives your agent hands. It also gives a stranger—or at least an unverified LLM—a way into your most sensitive data.

If you give an agent the export_all_issues tool, you've effectively given it a one-click data exfiltration mechanism for your entire security posture. If that agent is running in a third-party environment or has access to an unmonitored plugin, you’re essentially creating a new leak vector.

This is exactly why I built Vinkius the way I did. When we were building the engine (MCPFusion), the obsession wasn't just on making connections easy; it was on how we isolated them. Every execution context for these servers runs in an isolated V8 sandbox. We implemented eight specific governance policies—including DLP and HMAC audit chains—because 'convenience' is a terrible excuse for a security breach.

You shouldn't have to worry if your agent is scraping your get_iso_compliance data to train a model somewhere else. The infrastructure should handle the boundary enforcement so you can focus on the investigation.

Moving Beyond Tool Lists

If you look at the Aikido MCP documentation, you see a list of tools: list_webhooks, get_workspace, list_users. It looks like a standard API wrapper. But as an engineer, you shouldn't be looking for what the tools are; you should be looking at what they enable.

Take the list_cloud_assets and list_containers tools together. Most developers use them in isolation. But when you bridge them with an agent, you can perform real-time drift analysis. You can ask: "Are there any new container images scanned by Aikido in the last 24 hours that contain high-severity vulnerabilities which haven't been reflected in our cloud configuration updates?"

That is a level of observability that was previously gated behind expensive, specialized security tooling or custom-built automation scripts that break every time your infrastructure changes.

How to Actually Use This Without Breaking Your Workflow

You don't need to rewrite your entire CI/CD pipeline. You just need to change how you interact with your existing tools. If you are already using Aikido for vulnerability management, the setup is surprisingly low-friction:

  1. Grab your API token from your AikDO personal settings.
  2. Connect the server via Vinkius (you just grab a connection token and paste it into Claude or Cursor).
  3. Start asking questions.

You can find the canonical setup here: https://vinkius.com/mcp/aikido-security

I've found that the most effective way to use this is during 'triage sessions.' When a developer submits a PR that touches sensitive infrastructure, instead of just reviewing the code, you ask your agent to check the current posture of the affected cloud assets. It turns the security review from a static check into an active investigation.

The Bottom Line

The gap between "having data" and "understanding risk" is where most security teams fail. We have plenty of data; we just don't have the cognitive bandwidth to process it all in real-time.

MCP servers like Aikido are turning that data into actionable intelligence by moving the interface from a dashboard you visit to an agent you interact with. It’s not about replacing your security tools; it’s about finally making them conversational.

If you're tired of the tab-switching fatigue, it might be worth seeing what happens when you give your agent the right tools.


MCPs are the music of AI Agents. We built the catalog. Discover Vinkius MCP Catalog.