Agentic Radar
RepositoryFreeOpen-source CLI security scanner for agentic workflows.
Capabilities13 decomposed
multi-framework agentic workflow static analysis
Medium confidencePerforms AST-based static code analysis on agentic systems built with LangGraph, CrewAI, n8n, OpenAI Agents, and Autogen by parsing Python files and JSON workflow definitions to extract workflow structures, agent definitions, tool registrations, and MCP server integrations without executing code. Uses framework-specific analyzer classes that understand each framework's configuration patterns and API conventions to build a unified GraphDefinition data model representing the complete agent topology.
Implements framework-specific analyzer classes (LangGraphAnalyzer, CrewAIAnalyzer, N8nAnalyzer, OpenAIAgentsAnalyzer, AutogenAgentChatAnalyzer) that understand each framework's unique configuration patterns and API conventions, converting heterogeneous agent definitions into a unified GraphDefinition model — rather than using generic code parsing, each analyzer knows how to extract agents from StateGraph nodes, CrewAI Crew objects, n8n workflow JSON, OpenAI handoff patterns, and Autogen team configurations.
Supports 5 major agentic frameworks in a single tool with framework-aware parsing, whereas generic SAST tools treat agent code as ordinary Python and miss agent-specific constructs like tool registries, MCP server bindings, and handoff patterns.
owasp/mitre vulnerability mapping for agent components
Medium confidenceMaps detected agents, tools, and MCP servers against OWASP Top 10 for LLMs and MITRE ATT&CK frameworks to identify known vulnerability classes and attack patterns applicable to agentic systems. Maintains a vulnerability knowledge base that correlates component types (e.g., 'file system access tool', 'external API integration') with documented security risks, generating severity-tagged vulnerability reports that link each detected component to applicable threat models.
Maintains a specialized vulnerability knowledge base that correlates agentic component types (tool categories, MCP server capabilities, agent handoff patterns) with OWASP Top 10 for LLMs and MITRE ATT&CK tactics/techniques, rather than generic code vulnerability databases — understands that 'file system access tool' maps to prompt injection + unauthorized access risks, and 'external API tool' maps to supply chain attack risks.
Purpose-built for agentic systems with LLM-specific vulnerability mappings (OWASP Top 10 for LLMs), whereas generic SAST tools use traditional software vulnerability databases that don't account for LLM-specific attack vectors like prompt injection through tool outputs or model confusion attacks.
n8n workflow json analysis and node extraction
Medium confidenceImplements specialized analysis for n8n workflow automation systems by parsing JSON workflow files to extract workflow nodes, identify AI agent nodes, detect tool integrations, and map data flow between nodes. Understands n8n's node-based workflow model where nodes represent operations and connections represent data flow, and can identify which nodes are AI agents, which tools they call, and how data flows through the workflow.
Implements N8nAnalyzer class that parses n8n workflow JSON files to extract nodes, connections, and node configurations — understands n8n's node-based workflow model and can identify AI agent nodes, tool integrations, and data flow patterns specific to n8n's architecture.
Provides n8n-specific JSON parsing that understands n8n's workflow structure and node types, whereas generic JSON analysis tools cannot understand n8n's semantic model or identify AI agent nodes and tool integrations.
openai agents handoff and guardrail detection
Medium confidenceImplements specialized analysis for OpenAI Agents by parsing agent definitions to extract agent roles, tool assignments, handoff patterns (agent-to-agent transfers), and guardrail configurations. Understands OpenAI Agents' handoff model where agents can transfer control to other agents based on conditions, and detects guardrail patterns that constrain agent behavior. Identifies MCP server integrations specific to OpenAI Agents architecture.
Implements OpenAIAgentsAnalyzer class that understands OpenAI Agents' handoff model and can extract agent definitions, handoff patterns, and guardrail configurations — specifically detects handoff-based control flow and guardrail constraints that are unique to OpenAI Agents architecture.
Provides OpenAI Agents-specific analysis that understands handoff patterns and guardrail configurations, whereas generic code analysis cannot distinguish OpenAI Agents-specific patterns or understand handoff-based control flow.
autogen team and swarm configuration analysis
Medium confidenceImplements specialized analysis for Autogen-based systems by parsing team definitions (Swarm, RoundRobin, Selector strategies) and agent configurations to extract agent roles, tool assignments, and team orchestration patterns. Understands Autogen's team-based model where agents are organized into teams with specific orchestration strategies, and detects MCP server integrations specific to Autogen's architecture. Identifies tool sharing patterns and agent communication flows within teams.
Implements AutogenAgentChatAnalyzer class that understands Autogen's team-based model with orchestration strategies (Swarm, RoundRobin, Selector) and can extract team definitions, agent roles, tool assignments, and team communication patterns — specifically detects team-level security implications of different orchestration strategies.
Provides Autogen-specific analysis that understands team orchestration strategies and tool sharing patterns, whereas generic code analysis cannot distinguish Autogen-specific team models or understand orchestration strategy implications.
interactive force-directed workflow graph visualization
Medium confidenceGenerates interactive HTML-based force-directed graph visualizations of agentic workflows where nodes represent agents, tools, and MCP servers, and edges represent tool calls, handoffs, and server connections. Uses a physics-based layout algorithm to position nodes in 2D space based on connection density, allowing users to pan, zoom, and inspect individual components with hover tooltips and click-through details. The visualization is embedded in HTML reports and supports filtering by component type and vulnerability severity.
Implements a physics-based force-directed layout algorithm specifically tuned for agentic topologies, where node repulsion is weighted by component type (agents repel more strongly than tools) and edge attraction is weighted by interaction frequency — this produces layouts where agent clusters naturally separate and tool dependencies cluster near their consumers, making workflow patterns immediately visible.
Provides interactive, browser-based visualization with physics-based layout tuned for agent topologies, whereas generic workflow visualization tools (Miro, Lucidchart) require manual diagram creation and don't automatically extract topology from code.
adversarial input injection runtime testing
Medium confidencePerforms runtime vulnerability testing by injecting adversarial inputs (prompt injections, malformed data, boundary-case values) into live agent systems and monitoring responses for security failures such as unintended tool execution, information disclosure, or control flow hijacking. Implements a testing framework that can instantiate agents from supported frameworks, feed them crafted adversarial prompts, and compare outputs against expected safe behaviors to detect exploitable vulnerabilities that static analysis alone cannot find.
Implements a testing framework that can instantiate agents from multiple frameworks (LangGraph, CrewAI, OpenAI Agents, etc.) and inject adversarial inputs while monitoring for security failures like unintended tool execution or information disclosure — uses framework-specific test adapters to hook into agent execution and capture tool calls, model outputs, and state changes, enabling detection of vulnerabilities that static analysis cannot find.
Provides framework-aware runtime testing that understands agent-specific failure modes (tool hijacking, handoff manipulation), whereas generic fuzzing tools treat agents as black boxes and cannot detect agent-specific vulnerabilities like prompt injection leading to unauthorized tool execution.
prompt hardening and guardrail injection
Medium confidenceAnalyzes agent prompts and system messages to identify hardening opportunities and automatically injects guardrail patterns (e.g., 'You must not execute tools outside this list', 'Reject requests that contain...') into agent definitions. Implements pattern-based guardrail templates that can be applied to agents and tools to constrain behavior, and provides recommendations for prompt rewrites that improve resistance to prompt injection attacks based on OWASP LLM security guidelines.
Implements pattern-based guardrail templates that understand agentic-specific constraints (tool whitelisting, handoff restrictions, output format enforcement) and can be injected into agent prompts or system messages — uses OWASP Top 10 for LLMs guidelines to generate context-aware hardening recommendations that account for the agent's specific tools and capabilities.
Provides agent-aware prompt hardening with guardrail templates tuned for agentic attack surfaces (tool hijacking, handoff manipulation), whereas generic prompt injection defenses focus on traditional LLM chatbots and don't account for agent-specific risks like unauthorized tool execution.
mcp server detection and integration mapping
Medium confidenceDetects Model Context Protocol (MCP) servers integrated into agentic systems by parsing framework-specific MCP configuration patterns and source code references, then maps each detected MCP server to its capabilities, resource types, and security implications. Identifies MCP server instantiation, configuration parameters, and connection points within agent workflows, and correlates MCP capabilities with potential security risks (e.g., file system access, external API calls).
Implements framework-specific MCP detection patterns that understand how each supported framework (LangGraph, CrewAI, OpenAI Agents, Autogen) integrates MCP servers — parses MCP server instantiation code, extracts capability declarations, and maps resource access patterns to identify which agents can access which MCP resources, enabling supply chain risk assessment.
Provides agentic-framework-aware MCP detection that understands framework-specific integration patterns, whereas generic dependency scanners cannot distinguish MCP servers from other Python packages or understand their role in agent workflows.
html report generation with interactive components
Medium confidenceGenerates comprehensive HTML reports that bundle static analysis results, vulnerability assessments, workflow visualizations, and testing findings into a single interactive document. Reports include force-directed graph visualizations, vulnerability tables with severity filtering, tool inventory with descriptions, MCP server mappings, and runtime test results. Supports multiple report templates and customizable styling, with all interactive components (graphs, tables, filters) embedded in the HTML file for offline viewing.
Bundles all analysis results (static analysis, vulnerability assessment, runtime testing, workflow visualization) into a single self-contained HTML file with interactive components (force-directed graphs, filterable tables, collapsible sections) that require no external dependencies or server infrastructure — uses embedded D3.js or similar for visualization and vanilla JavaScript for interactivity.
Provides comprehensive, self-contained HTML reports with interactive visualizations and filtering, whereas generic security scanners produce text-based or PDF reports that are static and difficult to explore interactively.
cli command interface with framework selection
Medium confidenceProvides a command-line interface that allows users to specify target agent frameworks, source code directories, analysis options (static analysis, runtime testing, prompt hardening), and output formats. The CLI supports framework-specific options (e.g., CrewAI YAML config paths, n8n workflow file patterns) and orchestrates the analysis pipeline by instantiating the appropriate framework-specific analyzers, running vulnerability assessments, and generating reports. Supports both single-command analysis and interactive mode for iterative exploration.
Implements a framework-aware CLI that accepts framework selection as a parameter and dynamically instantiates the appropriate analyzer class (LangGraphAnalyzer, CrewAIAnalyzer, N8nAnalyzer, etc.) — supports framework-specific options (e.g., CrewAI YAML paths, n8n workflow patterns) and orchestrates the full analysis pipeline from source code to HTML report generation.
Provides framework-specific CLI options and analyzer selection, whereas generic security scanners use one-size-fits-all analysis that doesn't account for framework-specific configuration patterns or tool registration mechanisms.
langgraph-specific workflow extraction and analysis
Medium confidenceImplements specialized analysis for LangGraph-based agents by parsing StateGraph definitions, extracting node types (agents, tools, conditional logic), identifying tool bindings and custom tool implementations, and detecting MCP server integrations specific to LangGraph's architecture. Understands LangGraph's node-edge model where nodes represent computation steps and edges represent control flow, and maps this to the unified GraphDefinition model for vulnerability assessment and visualization.
Implements LangGraphAnalyzer class that understands LangGraph's StateGraph node-edge model and can parse StateGraph definitions to extract nodes (agents, tools, conditional logic), edges (control flow), and tool bindings — maps LangGraph's architecture directly to the unified GraphDefinition model, preserving framework-specific metadata for accurate vulnerability assessment.
Provides LangGraph-specific parsing that understands StateGraph structure and node types, whereas generic Python AST analysis cannot distinguish LangGraph-specific patterns from ordinary Python code.
crewai-specific agent and crew analysis
Medium confidenceImplements specialized analysis for CrewAI-based systems by parsing Agent and Crew class definitions from Python source code and YAML configuration files, extracting agent roles, goals, tools, and crew hierarchies. Understands CrewAI's agent-crew-task model where agents are assigned to crews with specific roles and tools, and detects MCP server integrations specific to CrewAI's architecture. Supports both Python-based and YAML-based CrewAI configurations.
Implements CrewAIAnalyzer class that parses both Python source code (Agent, Crew, Task classes) and YAML configuration files to extract agent definitions, crew hierarchies, and tool assignments — understands CrewAI's role-based agent model and can correlate Python code with YAML configs to build a complete picture of crew structure.
Supports both Python and YAML-based CrewAI configurations with framework-aware parsing, whereas generic code analysis tools cannot understand CrewAI's agent-crew-task model or correlate Python code with YAML configs.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Agentic Radar, ranked by overlap. Discovered automatically through the match graph.
Agentic Radar
Open-source CLI security scanner for agentic...
n8n-mcp
A MCP for Claude Desktop / Claude Code / Windsurf / Cursor to build n8n workflows for you
n8n-mcp
A MCP for Claude Desktop / Claude Code / Windsurf / Cursor to build n8n workflows for you
hexstrike-ai
HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly bridge LLMs with real-world offensive security capa
n8n-workflow-builder
AI assistant integration for n8n workflow automation through Model Context Protocol (MCP). Connect Claude Desktop, ChatGPT, and other AI assistants to n8n for natural language workflow management.
wavefront
🔥🔥🔥 Enterprise AI middleware, alternative to unifyapps, n8n, lyzr
Best For
- ✓security teams auditing agentic systems before deployment
- ✓developers building multi-framework agent orchestrations
- ✓teams migrating between agent frameworks and needing inventory
- ✓security engineers conducting threat modeling on agentic systems
- ✓compliance teams mapping agent risks to OWASP/MITRE frameworks
- ✓developers integrating security checks into agent development workflows
- ✓teams using n8n for workflow automation with AI agents
- ✓security teams auditing n8n deployments
Known Limitations
- ⚠Requires source code access — cannot analyze compiled or obfuscated agent definitions
- ⚠Dynamic tool registration (runtime-generated tools) may not be detected if not statically analyzable
- ⚠n8n analysis limited to JSON workflow files; does not introspect custom n8n nodes without source
- ⚠Framework-specific analyzers must be updated when frameworks introduce new configuration patterns
- ⚠Vulnerability mappings are static and based on component type — does not perform dynamic taint analysis or data flow tracking
- ⚠Custom tools without standard naming conventions may not match vulnerability patterns
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
Open-source CLI security scanner for agentic workflows.
Categories
Alternatives to Agentic Radar
Are you the builder of Agentic Radar?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →