inkog
Inkog is a security co-pilot for AI agent development, providing real-time vulnerability scanning, governance verification, and compliance analysis directly within your AI coding environment (Claude Desktop, Cursor, Claude Code).
Static & Deep Security Scanning: Analyze AI agent code for prompt injection, infinite loops, token bombing, SQL injection via LLM, missing guardrails, and complex logic flaws across 20+ frameworks (LangChain, CrewAI, LangGraph, AutoGen, n8n, Flowise, etc.).
Governance Verification: Validate that
AGENTS.mddeclarations match actual code behavior (e.g., "read-only declared but code writes data"), essential for EU AI Act Article 14 compliance.Compliance Reporting: Generate reports mapped to EU AI Act, NIST AI RMF, ISO 42001, and OWASP LLM Top 10, with customizable output formats (SARIF, markdown, JSON, PDF).
MCP Server Auditing: Security audit any MCP server from registries or GitHub before installation, checking for tool poisoning, privilege escalation, and data exfiltration risks.
Skill Package Scanning: Scan
SKILL.mdpackages and agent tool definitions for vulnerabilities mapped to OWASP Agentic Top 10 and OWASP MCP Top 10.Multi-Agent System Auditing: Analyze Agent-to-Agent (A2A) communications for infinite delegation loops, privilege escalation, data leakage, and unauthorized handoffs.
MLBOM Generation: Create a Machine Learning Bill of Materials listing all AI models, tools, data sources, and dependencies in CycloneDX or SPDX format, optionally including known vulnerabilities.
Finding Explanation & Remediation: Get plain-English explanations and step-by-step remediation guidance for specific security findings.
Supports security analysis and auditing for CrewAI multi-agent systems, detecting delegation loops, privilege escalation, and security risks in CrewAI agent implementations.
Enables auditing of GitHub MCP servers for security vulnerabilities and integrates with GitHub Actions for automated security gates on pull requests.
Provides integration with GitHub Actions for automated security scanning and compliance gates on every pull request in CI/CD pipelines.
Supports security scanning and vulnerability detection for LangChain agent implementations, including prompt injection, infinite loops, and missing guardrails.
Provides security auditing for LangGraph multi-agent systems, detecting delegation vulnerabilities and security risks in LangGraph implementations.
Supports security analysis for n8n workflow automation agents, detecting vulnerabilities and security risks in n8n-based AI agent implementations.
Generates compliance reports mapping security findings to OWASP LLM Top 10 and OWASP Agentic Top 10 frameworks for AI agent security standards.
Enables security auditing of Slack MCP servers for vulnerabilities before installation, analyzing tool permissions and data flow risks.
Provides complementary AI-specific security scanning that understands AI agent vulnerabilities not covered by traditional code scanners like Snyk.
Offers specialized AI agent security analysis that complements traditional code quality tools like SonarQube with AI-specific vulnerability detection.
Generates Machine Learning Bill of Materials (MLBOM) in SPDX format for documenting AI agent dependencies and supply chain compliance.
Inkog MCP Server
Security companion for AI agent development in Claude, Cursor, and Claude Code.
Ask your AI pair-programmer to build an agent. Inkog checks it as you code — scanning for vulnerabilities, explaining findings in plain English, verifying AGENTS.md governance, and auditing agent-to-agent delegation. All inside the same conversation, no context switch.
Available in Claude Desktop, Cursor, Claude Code, ChatGPT, and any MCP-compatible client.
The Dev-Flow Loop
Inkog is designed to live inside the conversation where you build the agent — not as a post-hoc gate:
Ask Claude to build a piece of agent logic.
Ask Claude to scan it with Inkog —
"Scan this with Inkog and show me any CRITICAL or HIGH findings."Ask Claude to explain each finding in plain English —
"Explain the top finding. What's the risk, and how do I fix it?"Ask Claude to apply the fixes. Review the diff, approve, re-scan.
Before shipping, verify governance —
"Verify my AGENTS.md against the code"and"Audit the agent-to-agent delegation".
Read the full walkthrough: Building Secure AI Agents with Claude Code and the Inkog MCP.
Recommended prompts
"Scan the current directory with Inkog and show me any CRITICAL or HIGH findings."
"Explain the top finding in plain English. What's the risk, and how do I fix it?"
"Verify my AGENTS.md against the code."
"Audit the agent-to-agent delegation in this crew."
"Run a compliance report and map the findings to EU AI Act Articles 12, 14, and 15."
"Audit the MCP servers I'm integrating with."
Related MCP server: AgentAudit
When to Use Inkog
Building an AI agent — Scan during development to catch infinite loops, prompt injection, and missing guardrails before they ship
Adding security to CI/CD — Add
inkog-io/inkog@v1to GitHub Actions for automated security gates on every PRPreparing for EU AI Act — Generate compliance reports mapping your agent to Article 14, NIST AI RMF, OWASP LLM Top 10
Reviewing agent code — Use from Claude Code, Cursor, or any MCP client to get security analysis while you code
Auditing MCP servers — Check any MCP server for tool poisoning, privilege escalation, or data exfiltration before installing
Verifying AGENTS.md — Validate that governance declarations match actual code behavior
Building multi-agent systems — Detect delegation loops, privilege escalation, and unauthorized handoffs between agents
What Inkog Does
Logic Flaw Detection: Find infinite loops, recursion risks, and missing exit conditions
Security Analysis: Detect prompt injection paths, unconstrained tools, and data leakage risks
AGENTS.md Governance: Validate that code behavior matches governance declarations
Compliance Reporting: Generate reports for EU AI Act, NIST AI RMF, OWASP LLM Top 10
MCP Server Auditing: Audit any MCP server before installation
Multi-Agent Analysis: Audit Agent-to-Agent communications for logic and security issues
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"inkog": {
"command": "npx",
"args": ["-y", "@inkog-io/mcp"],
"env": {
"INKOG_API_KEY": "sk_live_your_api_key"
}
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"inkog": {
"command": "npx",
"args": ["-y", "@inkog-io/mcp"],
"env": {
"INKOG_API_KEY": "sk_live_your_api_key"
}
}
}
}Global Installation
npm install -g @inkog-io/mcpGetting Your API Key
Sign up for free at app.inkog.io
Copy your API key from the dashboard
Set it as
INKOG_API_KEYenvironment variable
Available Tools
P0 - Core Analysis (Essential)
Tool | Description |
| Static analysis for logic flaws and security risks |
| Validate AGENTS.md declarations match actual code behavior |
P1 - Enterprise Features
Tool | Description |
| Generate EU AI Act, NIST, OWASP compliance reports |
| Get detailed remediation guidance for findings |
| Audit any MCP server before installation |
| Generate ML Bill of Materials (CycloneDX, SPDX) |
P2 - Multi-Agent Analysis
Tool | Description |
| Audit Agent-to-Agent communications |
Tool Details
inkog_scan
Static analysis for AI agent code - finds logic flaws and security risks.
Arguments:
path (required) File or directory path to scan
policy (optional) Analysis policy: low-noise, balanced, comprehensive, governance, eu-ai-act
output (optional) Output format: summary, detailed, sarifExample: "Scan my LangChain agent for logic flaws"
inkog_verify_governance
Validate that AGENTS.md declarations match actual code behavior. This is Inkog's unique differentiator - no other tool does governance verification.
Arguments:
path (required) Path to directory containing AGENTS.md and agent codeExample: "Verify my agent's governance declarations"
inkog_compliance_report
Generate compliance reports for regulatory frameworks.
Arguments:
path (required) Path to scan
framework (optional) eu-ai-act, nist-ai-rmf, iso-42001, owasp-llm-top-10, all
format (optional) markdown, json, pdfExample: "Generate an EU AI Act compliance report for my agent"
inkog_explain_finding
Get detailed explanation and remediation guidance for a security finding.
Arguments:
finding_id (optional) Finding ID from scan results
pattern (optional) Pattern name (e.g., prompt-injection, infinite-loop)Example: "Explain how to fix prompt injection vulnerabilities"
inkog_audit_mcp_server
Security audit any MCP server from the registry or GitHub.
Arguments:
server_name (optional) MCP server name from registry (e.g., "github", "slack")
repository_url (optional) Direct GitHub repository URLExample: "Audit the GitHub MCP server for security issues"
inkog_generate_mlbom
Generate a Machine Learning Bill of Materials listing all AI components.
Arguments:
path (required) Path to agent codebase
format (optional) cyclonedx, spdx, json
include_vulnerabilities (optional) Include known CVEs (default: true)Example: "Generate an MLBOM for my AI project"
inkog_audit_a2a
Audit Agent-to-Agent communications for security risks.
Arguments:
path (required) Path to multi-agent codebase
protocol (optional) a2a, crewai, langgraph, auto-detect
check_delegation_chains (optional) Check for infinite loops (default: true)Example: "Audit my CrewAI multi-agent system for security risks"
Supported Frameworks
Inkog works with all major AI agent frameworks:
LangChain / LangGraph
CrewAI
AutoGen
n8n
Flowise
Dify
Microsoft Copilot Studio
Custom implementations
Configuration
All configuration is done via environment variables:
Variable | Description | Default |
| Your API key (required) | - |
| API base URL |
|
| API version |
|
| Request timeout (ms) |
|
| Log level |
|
| Log format (json/text) |
|
Development
# Install dependencies
npm install
# Build
npm run build
# Run in development mode
npm run dev
# Run tests
npm test
# Lint
npm run lintWhy Inkog?
Security in the Dev-Flow, Not After It
Most AI agent security tools run after the code is written. Inkog lives inside the conversation where you build the agent — so findings get fixed before they land in a PR, not three weeks later.
The Only Tool with AGENTS.md Verification
Inkog is the only tool that can validate your agent's governance declarations against its actual code behavior. This is essential for:
EU AI Act Article 14 compliance (human oversight)
Enterprise governance requirements
Preventing governance drift as code evolves
Purpose-Built for AI Agents
Unlike traditional code scanners (Snyk, Semgrep, SonarQube), Inkog understands AI-specific issues:
Infinite loops and recursion risks
Prompt injection paths
Unconstrained tool access
Missing exit conditions
Cross-tenant data leakage
Multi-Framework Support
Inkog's Universal IR (Intermediate Representation) works with any agent framework. Add one integration, get analysis for all frameworks.
License
Apache-2.0 - see LICENSE
Links
Built with security by Inkog.io
Available Tools
10 toolsinkog_audit_a2aA
Audit Agent-to-Agent (A2A) communications in multi-agent systems. Detects infinite delegation loops, privilege escalation, data leakage between agents, and unauthorized handoffs. Supports Google A2A protocol, CrewAI, LangGraph, and AutoGen. Use this when building or reviewing multi-agent systems to detect delegation vulnerabilities.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to multi-agent system codebase | |
| protocol | No | Multi-agent protocol hint (optional, will auto-detect if not specified) | |
| check_delegation_chains | No | Check for infinite delegation loops and unauthorized handoffs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It states the tool 'detects' vulnerabilities, implying a read-only operation, but does not explicitly confirm it does not modify files, require specific authentication, or have rate limits. The description adds some context but lacks comprehensive behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no fluff. The first sentence states the purpose and capabilities, the second provides usage guidance. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the description explains purpose and usage well, it does not describe the output format or return values. Since no output schema is provided, the description should cover what the tool returns (e.g., list of findings). This gap limits completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all three parameters with descriptions, resulting in 100% coverage. The description does not add new information beyond the schema for each parameter, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Audit' and the specific resource 'Agent-to-Agent communications'. It lists precise detections (infinite delegation loops, privilege escalation, data leakage, unauthorized handoffs) and explicitly lists supported protocols, distinguishing it from sibling tools like inkog_scan which cover broader scanning.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states 'Use this when building or reviewing multi-agent systems to detect delegation vulnerabilities,' providing clear context for when to use the tool. However, it does not explicitly mention when not to use it or compare with alternative sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_audit_mcp_serverA
Security audit any MCP server from the registry or GitHub. Analyzes tool permissions, data flow risks, input validation, and potential vulnerabilities. Use this before installing any new MCP server to verify it is safe.
| Name | Required | Description | Default |
|---|---|---|---|
| server_name | No | MCP server name from registry (e.g., "github", "slack", "postgres") | |
| repository_url | No | Direct GitHub repository URL to audit |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It mentions analyzing permissions, data flow risks, input validation, and vulnerabilities, which is good. However, it does not describe the output format (e.g., report, findings) or any side effects (e.g., network calls, no modifications).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the action, then details, then usage guidance. Every sentence adds value with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 2 parameters with full schema coverage and no output schema, the description is fairly complete. It covers purpose, scope, and usage. The only gap is the absence of output description, which would aid in an agent's decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions and examples. The tool description reinforces the parameter duality ('from the registry or GitHub'), adding contextual value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('audit') and resource ('MCP server') with clear scope ('from the registry or GitHub'). It differentiates from sibling tools by focusing on MCP server security, while siblings like inkog_skill_scan and inkog_audit_a2a target other areas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'before installing any new MCP server to verify it is safe.' This provides clear context but does not explicitly exclude alternatives or mention when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_compliance_reportA
Generate a compliance report for EU AI Act, NIST AI RMF, ISO 42001, or OWASP LLM Top 10. Analyzes agent code and maps findings to regulatory requirements. Use this when preparing AI agents for regulatory compliance or audit.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to scan for compliance analysis | |
| framework | No | Compliance framework: eu-ai-act (default), nist-ai-rmf, iso-42001, owasp-llm-top-10, or all | eu-ai-act |
| format | No | Output format: markdown (default), json, or pdf | markdown |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states it 'Analyzes agent code and maps findings to regulatory requirements' but does not disclose behavioral traits like side effects, permissions, rate limits, or output structure. Lacks depth for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose and regulatory scope. Every sentence is meaningful with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description could better describe the nature of the report (e.g., structure, risk levels). It explains what the tool does but not what to expect from the result. Complex enough that more detail would help, but the 3 parameters are well-documented.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description adds context about analyzing code and regulatory mapping, but does not provide additional parameter-specific meaning beyond what the schema already offers.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it generates compliance reports for specific regulatory frameworks (EU AI Act, NIST AI RMF, etc.) and analyzes agent code. The description distinguishes this tool from siblings like inkog_mcp_scan or inkog_deep_scan by focusing on compliance mapping.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage context: 'Use this when preparing AI agents for regulatory compliance or audit.' Does not mention when not to use or alternatives, but the guidance is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_deep_scanA
Inkog Deep scan for AI agents. Uses advanced analysis to detect complex vulnerabilities, logic flaws, and security issues that pattern-based scanning may miss. Requires the Inkog Deep role. IMPORTANT: Deep scans typically take around 10 minutes — inform the user before starting and let them know the scan is running.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File or directory path to scan | |
| agent_name | No | Agent name for dashboard identification (auto-detected from path if not provided) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses scan duration (~10 minutes) and role requirement, but does not confirm read-only nature or potential side effects. While 'scan' implies non-destructive, explicit statement would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Compact three-sentence description: purpose, capability, and key usage notes (role, duration). Front-loaded with core functionality, no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers essential aspects for a scan tool: purpose, detection capability, prerequisites, and timely warning. Lacks mention of output format or result handling, but no output schema exists and siblings may follow common patterns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions for both parameters (path and agent_name). The description adds no additional semantic meaning beyond the schema, meeting the baseline expectation for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it performs a deep scan using advanced analysis to detect complex vulnerabilities and logic flaws, distinguishing from pattern-based scanning. Explicitly requires the Inkog Deep role, differentiating from sibling tools like inkog_scan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides context for when to use (for complex issues) and prerequisites (requires Inkog Deep role). Includes important temporal information (10 minutes) and user communication requirement. However, does not explicitly state when not to use or compare to alternatives like inkog_scan for faster results.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_explain_findingA
Get detailed explanation and remediation guidance for a security finding or pattern. Includes what the issue is, why it's dangerous, step-by-step fixes, and code examples. Use this after scanning to understand how to fix security findings.
| Name | Required | Description | Default |
|---|---|---|---|
| finding_id | No | Finding ID from scan results (e.g., "f8a3b2c1") | |
| pattern | No | Pattern name: prompt-injection, infinite-loop, sql-injection-llm, token-bombing, hardcoded-credentials, missing-rate-limits, recursive-delegation, etc. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses return content (explanation, remediation, code examples) but does not mention limitations like what happens if finding ID is invalid or pattern unrecognized. Adequate but could be more thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, each serving a distinct purpose: first defines tool's function and content, second provides usage timing. No superfluous words; efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has two optional parameters and no output schema. Description covers tool's purpose and return content adequately. Could hint at behavior when both parameters are provided vs. one, but overall complete for a simple lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description does not add significant meaning beyond schema; it mentions 'finding or pattern' but schema already describes parameters. No added constraints or usage hints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides detailed explanation and remediation guidance for security findings/patterns, listing specific content (issue, danger, fixes, code examples). It distinguishes from sibling scanning tools by advising use 'after scanning.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use this after scanning to understand how to fix security findings,' providing clear context. Does not mention when not to use or compare to alternatives among siblings, but the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_generate_mlbomA
Generate a Machine Learning Bill of Materials (MLBOM) for AI agents. Lists all models, tools, data sources, frameworks, and dependencies. Supports CycloneDX and SPDX formats. Use this when documenting AI agent dependencies for supply chain compliance.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to agent codebase to analyze | |
| format | No | Output format: cyclonedx (recommended), spdx, or json | cyclonedx |
| include_vulnerabilities | No | Include known vulnerabilities for detected components |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so description carries full burden. It implies analysis of a codebase (path required) but does not disclose potential side effects like file system access, scan duration, or that it is a read-only operation. The description is not misleading but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences that front-load the action and purpose. No wasted words; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, no output schema, and no annotations, the description covers the core purpose, supported formats, and usage context. It could be improved by describing the output format or behavior for invalid paths, but it is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% description coverage, so baseline is 3. The description adds minimal parameter nuance beyond what's in the schema, e.g., mentioning 'CycloneDX and SPDX formats' but those are already enumerated in the format parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool generates a Machine Learning Bill of Materials (MLBOM) for AI agents, listing models, tools, data sources, frameworks, and dependencies. It also mentions supported formats (CycloneDX, SPDX), making the purpose specific and distinct from sibling audit/scan tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use this when documenting AI agent dependencies for supply chain compliance,' providing clear context. However, it does not mention when not to use or suggest alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_mcp_scanA
Scan MCP servers from registry or by repository URL for security vulnerabilities. Detects tool poisoning, command injection, data exfiltration, prompt injection, excessive permissions, obfuscation, supply chain risks, and more. Maps findings to OWASP Agentic Top 10 and OWASP MCP Top 10. Set deep=true for AI-powered deep analysis (~10 min, catches novel threats). For skill package scanning, use inkog_skill_scan instead.
| Name | Required | Description | Default |
|---|---|---|---|
| server_name | No | MCP server name from registry (e.g., "github", "filesystem", "postgres") | |
| repository_url | No | GitHub repository URL of the MCP server | |
| deep | No | Enable AI deep analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses deep mode duration (10 min), detection capabilities, and frameworks mapped. Lacks details on output format but sufficient for a scanning tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with purpose, then details, then alternative tool. No wasted words, well-structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description mentions vulnerability types and frameworks. Good for a scan tool with 3 params. Could mention return type but minimal gap given sibling tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. Description adds context: examples for server_name, clarifies repository_url is GitHub, explains deep mode effect and duration. Value-added beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scans MCP servers from registry or repository URL for security vulnerabilities, listing specific types and differentiating from sibling inkog_skill_scan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (MCP server scanning) and when not (skill packages, directing to inkog_skill_scan). Also provides guidance on deep mode with time estimate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_scanA
Security co-pilot for AI agent development. Scans for prompt injection, infinite loops, token bombing, SQL injection via LLM, and missing guardrails. Supports LangChain, CrewAI, LangGraph, AutoGen, n8n, and 20+ agent frameworks. Use this whenever building, reviewing, or deploying AI agents to catch security issues before they reach production.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File or directory path to scan | |
| agent_name | No | Agent name for dashboard identification (auto-detected from path if not provided) | |
| policy | No | Security policy: low-noise (proven vulnerabilities only), balanced (default), comprehensive (all findings), governance (Article 14 focused), eu-ai-act (compliance mode) | balanced |
| output | No | Output format: summary (default), detailed (full findings), sarif (for CI/CD) | summary |
| filter | No | File filtering: auto (detect agent repos, adapt filtering), agent-only (aggressive filtering), all (no filtering) | auto |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description describes what it scans for but does not disclose behavioral traits like network calls, resource impact, or required permissions. It is likely read-only but not explicitly stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, 60 words, front-loaded with purpose. No wasted words. Efficiently communicates key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema and no annotations, the description adequately covers tool purpose, target vulnerabilities, supported frameworks, and usage scenario. Missing return value details but schema covers output format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with clear descriptions for all 5 parameters. Description adds little beyond summarizing the scanning purpose. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it is a security copilot for AI agent development, scanning for specific vulnerabilities. It distinguishes itself from siblings like inkog_mcp_scan by focusing on general AI agent frameworks, but does not explicitly differentiate from other scan tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage context: 'Use this whenever building, reviewing, or deploying AI agents to catch security issues before they reach production.' Does not mention when not to use or alternatives like inkog_deep_scan.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_skill_scanA
Scan SKILL.md packages and agent tool definitions for security vulnerabilities. Detects tool poisoning, command injection, data exfiltration, prompt injection, excessive permissions, obfuscation, supply chain risks, and more. Maps findings to OWASP Agentic Top 10 and OWASP MCP Top 10. Set deep=true for AI-powered deep analysis (~10 min, catches novel threats). For MCP server scanning, use inkog_mcp_scan instead.
| Name | Required | Description | Default |
|---|---|---|---|
| repository_url | No | GitHub repository URL of the skill package | |
| path | No | Local path to skill package directory | |
| deep | No | Enable AI deep analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that deep=true takes ~10 minutes and catches novel threats. It lists vulnerability types but does not mention rate limits, auth needs, or side effects. This is sufficient for a scan tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with only a few sentences front-loaded with the main purpose. Every sentence adds value, and there is no repetition or wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of scanning for multiple vulnerabilities and the absence of an output schema, the description is fairly complete. It explains what it does, what it detects, and how to use it. However, it could mention the return format (e.g., a report of findings) to fully inform the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the description adds context for the 'deep' parameter ('AI-powered deep analysis (~10 min, catches novel threats)'). The other parameters are standard and well-described in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool 'scans SKILL.md packages and agent tool definitions for security vulnerabilities' and lists specific vulnerability types, mapping to OWASP frameworks. It also distinguishes from the sibling tool inkog_mcp_scan for MCP server scanning.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear alternative: 'For MCP server scanning, use inkog_mcp_scan instead.' It also explains when to set deep=true for deep analysis. However, it does not mention prerequisites or when not to use the tool beyond the MCP distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inkog_verify_governanceA
Validate that AGENTS.md declarations match actual code behavior. Detects governance mismatches like 'read-only declared but code writes data' or 'human approval required but no approval gates in code'. Essential for EU AI Act Article 14 compliance. Use this whenever an AI agent project has an AGENTS.md file, or to verify governance compliance before deployment.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to directory containing AGENTS.md and agent code |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It does not explicitly state whether the tool is read-only, modifies any files, or requires network access. The detection examples imply it is a static analysis tool, but this is not confirmed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with four sentences covering purpose, examples, compliance context, and usage guidance. No unnecessary words, but could be slightly tighter by merging sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description fails to explain what the tool returns (e.g., list of mismatches, pass/fail, report). For a verification tool, this is a significant omission, making it incomplete for an agent to fully understand behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with the path parameter described adequately. The description reinforces the purpose of the path but adds no new parameter details beyond what the schema provides, giving a baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates AGENTS.md declarations against code behavior with specific examples of governance mismatches. It distinguishes itself from sibling scanning/audit tools by focusing specifically on governance compliance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: use when an AGENTS.md file exists or before deployment for compliance verification. While it lacks explicit when-not-to-use or alternatives, the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes, but there is some overlap between inkog_audit_mcp_server and inkog_mcp_scan, both auditing MCP servers. Descriptions help differentiate, but an agent might still confuse them.
All tools consistently follow the 'inkog_' prefix with snake_case and descriptive verb-noun combinations, making the naming pattern predictable and clear.
With 10 tools, the server is well-scoped for its domain of AI agent security auditing and compliance, offering enough coverage without being overwhelming.
The tool surface covers scanning agents, MCP servers, skills, A2A, compliance, MLBOM, and governance, but lacks a dedicated tool for scanning prompts or model vulnerabilities, which are minor gaps.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Security firewall for AI agents — scans MCP calls for injection, secrets, and risks.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Pay-per-call cybersecurity for AI agents: vuln scans, threat intel, compliance, code security.
The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceScans MCP servers, AI agent skills, and plugins for 68+ malicious patterns including credential exfiltration, prompt injection, and code execution.625MIT
- AlicenseAqualityFmaintenanceSecurity scanner for AI agent packages that enables AI agents to audit MCP servers and packages for vulnerabilities, prompt injection, and supply chain attacks.5293AGPL 3.0

AgentAuditofficial
AlicenseAqualityDmaintenanceEnables AI agents to scan MCP servers and AI packages for vulnerabilities, prompt injection, and supply chain attacks.729AGPL 3.0- AlicenseCqualityBmaintenanceSecurity scanner and MCP server that catches dangerous patterns in MCP servers and AI agent projects, such as leaked secrets, shell execution, and prompt-injection text. Runs as both a CLI and MCP server with CI-friendly severity gates.21MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/inkog-io/inkog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server