Skip to main content
Glama

Built for the teams that build, secure and govern AI

Your team

What you can do

Developers & AI engineers

Inspect repositories, dependencies and MCP configuration; bring findings into CI and coding assistants.

AppSec & cloud security

Connect cloud accounts, trace findings through workloads and identities, and prioritize fixes by reachable impact.

Platform & DevOps

Run a shared control plane, collect fleet evidence, and apply policy to MCP traffic through the proxy or gateway.

GRC & audit

Open Compliance to review mappings and export scan evidence with its source, freshness and assessment gaps.

Security & engineering leaders

Open Overview to review posture, remediation priorities and tracked AI spend across connected sources.

AI assistants & automation

Use MCP workflows to query evidence and inspect findings within the caller’s permissions.

Related MCP server: agent-audit

Product tour

Security and engineering leaders: decide what needs attention

See the current risk posture, critical findings, assessment coverage and tracked AI spend together. Open the underlying evidence before assigning a priority.

AppSec and cloud teams: explain why a finding matters

Follow CVE-2023-4863 in pillow@9.0.0 from its service and container through the tool, workload identity and reachable data asset. Inspect the source receipts and carry the selected finding into remediation.

Engineers and GRC: prioritize findings and verify fixes

Review findings by priority, affected asset, detection evidence and available fix. Open remediation to compare package upgrades and mapped controls, assign owners, set SLAs and re-scan to verify fixes.

These are application captures, not mockups. Overview, Findings and remediation use labeled sample data. The graph uses the reproducible reference lab: real parsers, a pinned advisory scan and authenticated gateway calls, with modeled infrastructure. A blocked call does not establish that the underlying package was fixed.

Discover and scan · Runtime policy and agent workflows · Run the reference evidence lab · Evidence workflow · Control-plane architecture

Self-host in your environment

Your infrastructure, your identity, your database, your audit boundary. Run the control plane on a workstation, a VM or your Kubernetes cluster. Connect the sources you need and add fleet collection or runtime enforcement as teams adopt them. The deployment guides cover credentials, persistence and access controls for each supported path.

For a workstation pilot, run from a published release checkout:

docker compose up -d

Open http://localhost:3000, then Connections or New Scan. For cloud accounts, add a scoped read-only connection, verify access, then start a scan. The pilot binds to loopback and retains state in a Docker volume. Use the authenticated deployment guide below for a shared instance.

Where you run it

Start here

Workstation evaluation

Docker pilot — packaged API, dashboard and persistent state

Shared VM / private cloud

Authenticated deployment · Compose profile — PostgreSQL and configured identity

Kubernetes

Helm deployment · EKS Terraform

Snowflake

Native App installation

Restricted networks

Air-gapped image bundle

Choose a deployment · Enterprise configuration · Connect cloud accounts

Work with your existing tools

Use the CLI or GitHub Action in CI, the REST API for automation, and MCP from coding assistants. Export SARIF, CycloneDX, SPDX, JSON and HTML for downstream workflows. Cloud connectors and fleet sync feed the control plane; proxy and gateway deployments contribute runtime evidence.

Integration capability matrix · MCP client setup · Proxy, gateway and fleet · Smithery setup and manifest

Quick start

Scan a repository:

pip install agent-bom
agent-bom scan .

Save CI evidence with agent-bom scan . -f sarif -o findings.sarif. Use agent-bom doctor to check setup. First-run guide

Try the CLI demo: agent-bom scan --demo --offline. The synthetic sample deliberately triggers a security gate (exit 1).

The recording runs the offline command and pages its output for readability.

Give assistants access to the same evidence:

pip install 'agent-bom[mcp-server]'
agent-bom mcp server

Start with eight focused tools, then select a graph, cloud, runtime or audit profile. The full catalog has 86 MCP tools, 7 resources, and 8 workflow prompts. MCP workflows

Use uvx agent-bom scan . without a global install, or uvx agent-bom check requests@2.33.0 --ecosystem pypi before adding a package. For automatic dependency and secret gates, see pre-commit and CI setup.

agent-bom db update --osv-ecosystem PyPI covers only the selected ecosystem; add the ecosystems you need before running agent-bom scan . --offline. The full agent-bom db update --source osv archive can exceed 1 GB; the command shows live progress. A non-zero exit can mean a security gate or incomplete assessment: inspect the report and coverage. Exit codes

Trust and evidence

Discovery uses read-only access by default. Explicit disk side-scans create temporary cloud resources; runtime enforcement acts on selected tool calls. Missing evidence stays unavailable or partial. Control mappings are not audit certification.

Product boundaries · Permissions · Threat model · Security policy · Release verification · Measured matcher proof

Contributing and support

Contributing · Support · Open issues · Apache-2.0 license

Available Tools

8 tools
checkPackage CVE CheckA
Read-onlyIdempotent

Check a specific package for known CVEs before installing.

    Queries OSV.dev for vulnerabilities in the given package. Use this
    before installing an MCP server or dependency to verify it is safe.

    Args:
        package: Package name with optional version, e.g. "express@4.18.2",
                 "@modelcontextprotocol/server-filesystem@2025.1.14",
                 or just "requests" (resolves @latest).
        ecosystem: Package ecosystem — "npm", "pypi", "go", "cargo",
                   "maven", "nuget", "rubygems", "composer", "swift",
                   "pub", "hex", "conda", "deb", "apk", or "rpm".
                   Defaults to "npm".

    Returns:
        JSON with package, version, ecosystem, vulnerability count,
        and vulnerability details (id, severity, cvss, fix version, summary).
    
ParametersJSON Schema
NameRequiredDescriptionDefault
offlineNoUse only the local advisory database. An explicit version is required; registry resolution and publication checks are disabled.
packageYesPackage name with optional version, e.g. 'express@4.18.2', '@modelcontextprotocol/server-filesystem@2025.1.14', or 'requests' (resolves @latest).
versionNoOptional package version when omitted from ``package`` (e.g. package='flask', version='0.12.2'). Prefer embedding in ``package`` as 'flask@0.12.2' or 'flask==0.12.2' when possible.
ecosystemNoPackage ecosystem: 'npm', 'pypi', 'go', 'cargo', 'maven', 'nuget', 'rubygems', 'composer', 'swift', 'pub', 'hex', 'conda', 'deb', 'apk', or 'rpm'.npm

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, so the safety profile is covered structurally. The description adds genuine value by disclosing the external dependency on OSV.dev (an outbound network query) and documenting the JSON return shape. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The key purpose is front-loaded in the first line, followed by a tight context sentence and structured Args/Returns blocks. It earns its length with the OSV.dev source note, usage guidance, and return-format disclosure, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given rich annotations, an output schema, and 100% parameter coverage, the description covers what matters beyond structure: external data source, when to invoke, and expected return fields. The only minor gap is that the offline/version parameters are not surfaced in the description text, though the schema fully documents them.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are already documented structurally and the baseline is 3. The description reinforces package/ecosystem with concrete examples but omits the offline and version parameters entirely from its Args section. It adds convenience, not new meaning, on top of the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a precise 'Check a specific package for known CVEs before installing' — a specific verb, resource, and scoping constraint. It clearly separates this single-package advisory check from broad siblings like scan or registry_lookup by framing it as a targeted, pre-installation safety verification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Use this before installing an MCP server or dependency to verify it is safe' gives an explicit trigger condition and intended moment of use. However, it does not name any alternative tools or state when NOT to use it, leaving an agent to infer the boundary against scan/policy_check/marketplace_check on its own.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

complianceCompliance PostureA
Read-onlyIdempotent

Get OWASP LLM Top 10 / OWASP MCP Top 10 / MITRE ATLAS / NIST AI RMF compliance posture.

    Scans local MCP configurations, maps findings to 47 security controls
    across four AI security frameworks, and returns per-control
    pass/warning/fail status with an overall compliance score.

    Args:
        config_path: Path to a specific MCP config directory.
                     If not provided, auto-discovers all local agent configs.
        image: Docker image reference to scan (e.g. "nginx:1.25").

    Returns:
        JSON with overall_score (0-100), overall_status (pass/warning/fail/no_data),
        and per-control details for OWASP LLM Top 10 (10 controls),
        OWASP MCP Top 10 (10 controls), MITRE ATLAS (13 techniques),
        and NIST AI RMF (14 subcategories). Plus a nist_800_53_catalog line:
        the vendor-asserted, catalog-backed NIST SP 800-53 Rev 5 score over
        evaluated controls only (with ISO-27001-by-id attribution), scored
        independently and NOT folded into overall_score.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
imageNoDocker image to scan, e.g. 'nginx:1.25'.
config_pathNoPath to MCP client config directory. Auto-discovers all if omitted.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description adds valuable context about scan behavior, return structure, and the notable fact that the nist_800_53_catalog score is independently scored and NOT folded into overall_score. This goes beyond annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is structured with Args and Returns sections, front-loaded with purpose. It is somewhat verbose, especially the Returns details, given that a full output schema exists. However, the special NIST 800-53 scoring nuance justifies the length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with two optional parameters and an output schema, the description fully explains scope, control mapping, return structure, and the separate NIST score. It leaves no critical gaps for an agent to understand what the tool does and what it returns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for both parameters. The paragraph text essentially restates schema descriptions (config_path auto-discovers, image is a Docker reference) without adding new semantics or edge-case guidance. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Get OWASP LLM Top 10 / OWASP MCP Top 10 / MITRE ATLAS / NIST AI RMF compliance posture.' It clearly states what it does (scans MCP configurations, maps to 47 controls) and distinguishes itself from sibling tools like scan or cis_benchmark by naming unique frameworks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context: scans local MCP configs with optional config_path or image, auto-discovers if omitted. However, it does not explicitly mention when to prefer this tool over alternatives or provide exclusions, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

exposure_pathsExposure PathsA
Read-onlyIdempotent

Return ranked ExposurePath JSON for headless security agents.

    This is the agent-native graph surface: Claude, Cursor, Codex,
    Windsurf, Cortex, and other MCP clients can request the same
    investigation objects used by the dashboard without scraping UI state.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of ranked exposure paths to return.
scan_idNoOptional graph scan ID. Omit to use the latest snapshot.
min_riskNoMinimum path risk score to include.
tenant_idNoTenant ID for the graph snapshot. Defaults to 'default'.default

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already convey readOnly, idempotent, and openWorld hints. The description adds context about the output being ranked and identical to dashboard objects, but does not disclose potential limits, error handling, or performance traits. It complements annotations without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences that deliver the core purpose and context without waste. The main action is front-loaded in the first sentence, and the second sentence adds relevant user audience information. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (4 parameters, rich annotations, and an output schema), the description provides sufficient context about the intended users and use case. The presence of an output schema covers return values, and annotations cover safety, making the description complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all four parameters are already well-documented in the schema. The description does not add any additional meaning or constraints beyond what the schema provides, meeting the baseline for this dimension.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns ranked ExposurePath JSON for headless security agents. It mentions specific MCP clients and distinguishes itself as the 'agent-native graph surface', differentiating from siblings like blast_radius or context_graph. However, it could more explicitly contrast with similar graph tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates the tool is for headless agents and lists target clients, but it does not provide explicit guidance on when to use this tool versus alternatives like blast_radius or graph_export. No when-not-to-use or alternative references are given, only implicit context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_sbomGenerate SBOMA
Read-onlyIdempotent

Generate a Software Bill of Materials (SBOM) for your AI agent setup.

    Discovers AI agents and MCP servers, extracts all package dependencies,
    and generates a standards-compliant SBOM.

    Args:
        format: SBOM format — "cyclonedx" (CycloneDX 1.7) or "spdx" (SPDX 3.0).
        config_path: Path to a specific MCP config directory.
                     If not provided, auto-discovers all local agent configs.

    Returns:
        JSON string containing the SBOM in the requested format.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoSBOM format: 'cyclonedx' (CycloneDX 1.7) or 'spdx' (SPDX 3.0).cyclonedx
config_pathNoPath to MCP client config directory. Auto-discovers all if omitted.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, openWorldHint, idempotentHint, and destructiveHint=false. The description adds that the tool discovers agents and servers, extracts dependencies, and generates a standards-compliant SBOM, which is consistent with read-only behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, front-loaded with the purpose, and uses a clear structure with bullet points for arguments and return. Every sentence contributes meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema (mentioned in signals) and two optional parameters, the description provides complete context: what the tool does, how parameters work, and the return format. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for both parameters. The description adds value by specifying the exact format values ('cyclonedx' and 'spdx') and clarifying config_path auto-discovery behavior, which goes beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates a Software Bill of Materials (SBOM) for AI agent setups, with specific details on discovering agents, MCP servers, and extracting dependencies. It distinguishes itself from sibling tools like 'scan' or 'inventory' by focusing on SBOM generation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool (to generate an SBOM) and explains config_path auto-discovery. However, it does not mention when not to use it or compare to alternatives among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

intel_lookupThreat Intel Advisory LookupA
Read-onlyIdempotent

Look up one advisory from the local threat-intel database.

ParametersJSON Schema
NameRequiredDescriptionDefault
advisory_idYesCVE, GHSA, or OSV advisory ID, e.g. CVE-2024-1234 or GHSA-abcd-1234-wxyz.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. Description adds 'local threat-intel database' context, indicating no external fetch. No contradiction. However, it doesn't detail behavior on missing IDs or performance considerations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, well-structured sentence that is front-loaded and free of redundancy. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given simplicity (1 param, output schema exists, annotations rich), the description is nearly complete. Minor gap: no mention of error handling or edge cases like invalid IDs, but output schema likely covers return structure.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the schema's parameter description already provides detailed format guidance (e.g., 'CVE-2024-1234 or GHSA-abcd-1234-wxyz'). The tool description adds no new parameter-level information beyond 'one advisory,' so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'Look up one advisory from the local threat-intel database.' It specifies a specific verb (look up) and resource (advisory from a local database), distinguishing it from siblings like intel_match which likely handle multiple matches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a specific advisory ID is known, but lacks explicit guidance on when to use this tool versus alternatives like intel_match or intel_sources. No mention of when not to use or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

policy_checkPolicy EvaluationA
Read-onlyIdempotent

Evaluate a security policy against current scan results.

    Runs a scan, then evaluates the provided policy rules against the
    findings. Policies can gate on severity thresholds, CISA KEV status,
    AI risk flags, credential exposure, and denied packages.

    Args:
        policy_json: JSON string containing policy rules. Example:
            {"rules": [{"id": "no-critical", "severity_gte": "critical",
            "action": "fail"}, {"id": "no-kev", "kev": true, "action": "fail"}]}

    Returns:
        JSON with passed (bool), violations list, failure_count, and
        warning_count.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
policy_jsonYesJSON string containing policy rules, e.g. {"rules": [{"id": "no-critical", "severity_gte": "critical", "action": "fail"}]}.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate read-only, non-destructive, and idempotent behavior. The description adds that it runs a scan and evaluates rules, and specifies the return structure (passed, violations, etc.), which is beyond annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with summary, details, and return info, but is slightly verbose. Could be more concise while retaining key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the single parameter and existence of output schema, the description covers the essential behavior and expected output. However, it lacks details on error handling or edge cases (e.g., invalid policy_json).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema coverage, the description still adds value by providing an illustrative example of the policy_json format and listing supported rule types (severity, KEV, etc.), enhancing understanding beyond the schema description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it evaluates a security policy against current scan results, with a specific verb and resource. It distinguishes from sibling tools like 'compliance' or 'code_scan' by focusing on custom policy rules.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the tool's purpose but lacks explicit guidance on when to use it versus alternatives like 'check' or 'should_i_deploy'. It provides context on policy components but no when-not statements.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remediateRemediation PlanA
Read-onlyIdempotent

Generate a remediation plan for vulnerabilities in your AI agent setup.

    Scans for vulnerabilities, then generates actionable fix commands for
    each affected package (npm install, pip install), credential scope
    reduction guidance, and reports on unfixable vulnerabilities.

    Args:
        config_path: Path to a specific MCP config directory.
                     If not provided, auto-discovers all local agent configs.
        image: Docker image reference to scan (e.g. "nginx:1.25").

    Returns:
        JSON with package_fixes (upgrade commands by ecosystem),
        credential_fixes (scope reduction steps), and unfixable items.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
imageNoDocker image to scan, e.g. 'nginx:1.25'.
config_pathNoPath to MCP client config directory. Auto-discovers all if omitted.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description fully discloses behavior: scanning for vulnerabilities, generating fix commands (npm install, pip install), credential scope reduction guidance, and reporting unfixable items. Annotations (readOnlyHint=true) align with generating instructions without executing them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (purpose, scanning, arguments, returns). It is slightly lengthy but each sentence provides relevant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the description covers all necessary aspects: scanning, fix generation, optional parameters, and return structure. Together with the input and output schema, the description is fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the description adds minimal value beyond the schema. It clarifies behavior for config_path (auto-discovers if omitted) and image, but this is largely repetitive.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: generating remediation plans for vulnerabilities in AI agent setups. It specifies scanning for vulnerabilities and producing fix commands, distinguishing it from sibling tools that focus on scanning alone.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on when to use the tool (after vulnerabilities are found) and describes the optional parameters (config_path, image). However, it does not explicitly mention when not to use or compare to alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scanSecurity ScanA
Read-onlyIdempotent

Run a full AI supply chain security scan and return an AI-BOM.

    Point it at a target with one of:
      • repo_url     — a public git repo URL (cloned + scanned, no checkout)
      • config_path  — a local project / MCP-config directory
      • image        — a Docker image
      • sbom_path    — an existing CycloneDX/SPDX SBOM
      • package      — a single package or MCP launch command (pair it with
                       ``ecosystem`` when the spec names no launcher)
    With none of these, it auto-discovers local MCP clients (Claude Desktop,
    Cursor, Windsurf, VS Code Copilot, OpenClaw, etc.).

    It extracts package dependencies, queries OSV.dev for CVEs, assesses
    config security (credential exposure, tool access), computes blast
    radius, and returns structured results. Scanning is fully static and
    read-only — repository and image contents are parsed, never executed.

    Returns:
        JSON with the complete AI-BOM report including agents, packages,
        vulnerabilities, blast radius, and remediation guidance.
    
ParametersJSON Schema
NameRequiredDescriptionDefault
imageNoDocker image to scan (e.g. 'nginx:1.25', 'ghcr.io/org/app:v1').
enrichNoEnable NVD CVSS, EPSS probability, and CISA KEV enrichment.
policyNoPolicy object to evaluate alongside scan results, e.g. {"rules": [{"id": "no-critical", "severity_gte": "critical", "action": "fail"}]}.
offlineNoUse the local vulnerability DB only and skip registry, OSV, GHSA, and NVIDIA network lookups.
packageNoDirect package or MCP launch command to scan, e.g. 'npx @modelcontextprotocol/server-filesystem@2025.1.14' or '@modelcontextprotocol/server-filesystem'. A bare 'name@version' spec is assumed to be npm — pass ``ecosystem`` for anything else.
repo_urlNoPublic git repository URL to clone and scan, e.g. 'https://github.com/org/repo'. Maps the repo's dependencies, project structure, secrets, IaC, and AI/MCP usage into an AI-BOM. Static and read-only: the repository is shallow-cloned into a temporary directory, scanned without ever executing its code, then deleted. The fastest way to point this tool at a target — no local checkout required.
ecosystemNoEcosystem of ``package`` when the spec does not name a launcher: 'npm', 'pypi', 'go', 'cargo', 'maven', 'nuget', 'rubygems', 'composer', 'swift', 'pub', 'hex', 'conda', 'deb', 'apk', or 'rpm'. Omitted, the ecosystem is inferred from the spec (PEP 440 specifiers such as 'flask==0.12.2' are PyPI) and any assumption is reported in the result warnings.
sbom_pathNoPath to existing CycloneDX or SPDX JSON SBOM file to ingest.
scorecardNoEnrich packages with OpenSSF Scorecard scores (requires resolvable GitHub repos).
db_sourcesNoComma-separated DB sources to sync before scanning (e.g. 'nvd,ghsa,osv,epss,kev').
transitiveNoResolve transitive dependencies for npx/uvx packages.
config_pathNoLocal directory to scan — a project root or an MCP client config directory. Auto-discovers installed MCP clients if omitted unless no_discover=true. Mutually exclusive with repo_url.
no_discoverNoDisable ambient host MCP-client discovery. Explicit repo/config, image, SBOM, and package targets are still scanned; use this for deterministic CI.
fail_severityNoReturn failure status if vulns at this severity or higher: critical, high, medium, low.
output_formatNoOutput format: 'json' (default), 'sarif', 'cyclonedx', 'spdx', 'junit', 'csv', or 'markdown'.json
warn_severityNoReturn warning status (gate_status=warn, exit 0) when vulns at this severity or higher exist. Use with fail_severity for two-tier CI gates, e.g. warn_severity='medium', fail_severity='critical'.
auto_update_dbNoExplicitly refresh the local vuln DB when older than the daily freshness target before scanning.
verify_integrityNoVerify package SHA-256/SRI hashes and SLSA provenance against registries.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint, destructiveHint), the description adds crucial behavioral detail: 'Scanning is fully static and read-only — repository and image contents are parsed, never executed.' It also discloses that repos are shallow-cloned into a temporary directory, scanned, and deleted. This goes well beyond the annotations and reassures an agent about side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a clear opening line, bulleted target options, a compact summary of the scan process, and a Returns section. Every sentence earns its place; there is no filler. The front-loaded purpose and scannable list make it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 18 parameters and a rich output schema, the description is remarkably complete. It covers all target types, the scanning methodology, the static/read-only safety guarantee, and the return format. The existence of an output schema means the description need not detail the JSON structure. The description leaves no critical gap for an agent to call the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents each parameter with rich descriptions. The tool description adds value by explaining how parameters interact (e.g., package requires ecosystem when no launcher is named) and the auto-discovery behavior when no target is given. This contextual information helps an agent choose parameters correctly without re-reading the schema, though it doesn't describe individual parameters' formats or defaults beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Run a full AI supply chain security scan and return an AI-BOM.' It then enumerates the distinct target types (repo_url, config_path, image, sbom_path, package) and outlines what the scan does (extract dependencies, query OSV, assess config, compute blast radius). This clearly distinguishes it from siblings like skill_scan or vector_db_scan, which target narrower scopes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance on how to select a target: 'Point it at a target with one of...' and explains the auto-discovery fallback when none is provided. It also clarifies the pairings of package with ecosystem and the mutual exclusivity of config_path and repo_url. However, it does not explicitly name alternative tools or state when not to use this tool versus siblings, leaving some inference to the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 78 tool updatesv1.0.5
    • Removedaccess_review
    • Removedai_inventory_scan
    • Removedaisvs_benchmark
    • Removedanalytics_query
    • Removedanomaly_scan
    • Removedapprove_exception
    • Removedaudit_integrity
    • Removedaudit_query
    • Removedblast_radius
    • Removedbrowser_extension_scan
    • Removedcis_benchmark
    • Removedcloud_inventory
    • Removedcloud_side_scan
    • Removedcode_scan
    • Removedcontext_graph
    • Removedcost_allocation
    • Removedcost_forecast
    • Removedcost_report
    • Removedcreate_ticket
    • Removedcredential_expiry
    • Removeddataset_card_scan
    • Removeddiff
    • Removeddrift_incidents
    • Removedfindings_triage
    • Removedfirewall_check
    • Removedfleet_scan
    • Removedgateway_status
    • Removedgpu_infra_scan
    • Removedgraph_correlate
    • Removedgraph_correlation_status
    • Removedgraph_export
    • Removedidentity_grant_jit
    • Removedidentity_issue
    • Removedidentity_revoke
    • Removedidentity_revoke_jit
    • Removedidentity_rotate
    • Removedingest_external_scan
    • Removedintel_daily_brief
    • Removedintel_match
    • Removedintel_sources
    • Removedinventory
    • Removedinventory_asset
    • Removedinventory_list
    • Removedinventory_summary
    • Removedkspm_cluster_posture
    • Removedlicense_compliance_scan
    • Removedlist_exceptions
    • Removedmarketplace_check
    • Removedmodel_file_scan
    • Removedmodel_provenance_scan
    • Removednhi_discover
    • Removedprompt_scan
    • Removedproxy_alerts
    • Removedproxy_status
    • Removedregistry_lookup
    • Removedregistry_sweep_scan
    • Removedrequest_exception
    • Removedrisk_campaign_workflow
    • Removedruntime_blueprint_drift
    • Removedruntime_blueprints
    • Removedruntime_correlate
    • Removedruntime_evidence_ingest
    • Removedruntime_production_index
    • Removedshield_break_glass
    • Removedshield_start
    • Removedshield_status
    • Removedshield_unblock
    • Removedshould_i_deploy
    • Removedskill_scan
    • Removedskill_trust
    • Removedskill_verify
    • Removedsync_ticket_status
    • Removedtool_risk_assessment
    • Removedtraining_pipeline_scan
    • Removedvector_db_scan
    • Removedverify
    • Removedwhere
    • Removedyoucom_search
  2. 1 tool updatev0.103.2
    • Changedruntime_evidence_ingest3 fields changed
      • removedInput schema / properties / operator_role
        Removed value: -{
        -  "default": "viewer",
        -  "description": "Operator role for this write action. Must be admin.",
        -  "title": "Operator Role",
        -  "type": "string"
        -}
      • removedInput schema / properties / operator_scopes
        Removed value: -{
        -  "default": "",
        -  "description": "Comma-separated operator scopes. Must include findings:write.",
        -  "title": "Operator Scopes",
        -  "type": "string"
        -}
      • removedInput schema / properties / reason
        Removed value: -{
        -  "default": "",
        -  "description": "Human audit reason for ingesting runtime evidence.",
        -  "title": "Reason",
        -  "type": "string"
        -}
  3. 5 tool updates
    • Addedgraph_correlate
    • Addedgraph_correlation_status
    • Changedinventory_list1 field changed
      • addedInput schema / properties / severity
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Filter by the asset's highest directly linked finding severity.",
        +  "title": "Severity"
        +}
    • Changedruntime_evidence_ingest3 fields changed
      • addedInput schema / properties / operator_role
        Added value: +{
        +  "default": "viewer",
        +  "description": "Operator role for this write action. Must be admin.",
        +  "title": "Operator Role",
        +  "type": "string"
        +}
      • addedInput schema / properties / operator_scopes
        Added value: +{
        +  "default": "",
        +  "description": "Comma-separated operator scopes. Must include findings:write.",
        +  "title": "Operator Scopes",
        +  "type": "string"
        +}
      • addedInput schema / properties / reason
        Added value: +{
        +  "default": "",
        +  "description": "Human audit reason for ingesting runtime evidence.",
        +  "title": "Reason",
        +  "type": "string"
        +}
    • Changedtool_risk_assessment3 fields changed
      • addedInput schema / properties / allow_command_execution
        Added value: +{
        +  "default": false,
        +  "description": "Explicitly allow launching unblocked stdio server commands. False only connects to HTTP/SSE servers.",
        +  "title": "Allow Command Execution",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / timeout / maximum
        Added value: +60
      • addedInput schema / properties / timeout / minimum
        Added value: +0.1
  4. 6 tool updatesv0.102.0
    • Addedapprove_exception
    • Changedcheck1 field changed
      • addedInput schema / properties / offline
        Added value: +{
        +  "default": false,
        +  "description": "Use only the local advisory database. An explicit version is required; registry resolution and publication checks are disabled.",
        +  "title": "Offline",
        +  "type": "boolean"
        +}
    • Changedgateway_status4 fields changed
      • addedInput schema / properties / activity_cursor
        Added value: +{
        +  "default": "",
        +  "description": "Opaque cursor from a prior gateway_status activity response.",
        +  "title": "Activity Cursor",
        +  "type": "string"
        +}
      • addedInput schema / properties / activity_limit
        Added value: +{
        +  "default": 100,
        +  "description": "Maximum activity events to return when include_activity is true.",
        +  "maximum": 500,
        +  "minimum": 1,
        +  "title": "Activity Limit",
        +  "type": "integer"
        +}
      • addedInput schema / properties / include_activity
        Added value: +{
        +  "default": false,
        +  "description": "Include the durable, cursor-paged gateway activity feed.",
        +  "title": "Include Activity",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / include_self_posture
        Added value: +{
        +  "default": false,
        +  "description": "Include this deployment's tenant-scoped operator self-posture evidence.",
        +  "title": "Include Self Posture",
        +  "type": "boolean"
        +}
    • Addedlist_exceptions
    • Addedrequest_exception
    • Changedscan2 fields changed
      • changedInput schema / properties / config_path / description
        Previous value: -"Local directory to scan — a project root or an MCP client config directory. Auto-discovers all installed MCP clients if omitted. Mutually exclusive with repo_url."New value: +"Local directory to scan — a project root or an MCP client config directory. Auto-discovers installed MCP clients if omitted unless no_discover=true. Mutually exclusive with repo_url."
      • addedInput schema / properties / no_discover
        Added value: +{
        +  "default": false,
        +  "description": "Disable ambient host MCP-client discovery. Explicit repo/config, image, SBOM, and package targets are still scanned; use this for deterministic CI.",
        +  "title": "No Discover",
        +  "type": "boolean"
        +}
  5. 6 tool updatesv0.101.0
    • Changedblast_radius2 fields changed
      • addedInput schema / properties / scan_id
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional persisted scan scope.",
        +  "title": "Scan Id"
        +}
      • addedInput schema / properties / tenant_id
        Added value: +{
        +  "default": "default",
        +  "description": "Tenant scope for persisted findings. Defaults to 'default'.",
        +  "title": "Tenant Id",
        +  "type": "string"
        +}
    • Changedcis_benchmark1 field changed
      • changedInput schema / properties / region / description
        Previous value: -"AWS region (only for provider=aws). Defaults to us-east-1."New value: +"Optional AWS region scope. Omit to evaluate CIS across all enabled AWS regions."
    • Addedcloud_side_scan
    • Addedfindings_triage
    • Addedrisk_campaign_workflow
    • Addedyoucom_search
  6. 1 tool updatev0.99.0
    • Changedscan2 fields changed
      • addedInput schema / properties / ecosystem
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Ecosystem of ``package`` when the spec does not name a launcher: 'npm', 'pypi', 'go', 'cargo', 'maven', 'nuget', 'rubygems', 'composer', 'swift', 'pub', 'hex', 'conda', 'deb', 'apk', or 'rpm'. Omitted, the ecosystem is inferred from the spec (PEP 440 specifiers such as 'flask==0.12.2' are PyPI) and any assumption is reported in the result warnings.",
        +  "title": "Ecosystem"
        +}
      • changedInput schema / properties / package / description
        Previous value: -"Direct package or MCP launch command to scan, e.g. 'npx @modelcontextprotocol/server-filesystem@2025.1.14' or '@modelcontextprotocol/server-filesystem'."New value: +"Direct package or MCP launch command to scan, e.g. 'npx @modelcontextprotocol/server-filesystem@2025.1.14' or '@modelcontextprotocol/server-filesystem'. A bare 'name@version' spec is assumed to be npm — pass ``ecosystem`` for anything else."
  7. 5 tool updatesv0.98.3
    • Addedcreate_ticket
    • Changedingest_external_scan1 field changed
      • changedInput schema / properties / scan_json / description
        Previous value: -"JSON string from Trivy, Grype, or Syft scan output"New value: +"JSON string containing tool-agnostic SARIF, CycloneDX, SPDX, Trivy, Grype, or Syft evidence"
    • Addedkspm_cluster_posture
    • Addedruntime_evidence_ingest
    • Addedsync_ticket_status
  8. 4 tool updatesv0.96.2
    • Changedgenerate_sbom1 field changed
      • changedInput schema / properties / format / description
        Previous value: -"SBOM format: 'cyclonedx' (CycloneDX 1.6) or 'spdx' (SPDX 3.0)."New value: +"SBOM format: 'cyclonedx' (CycloneDX 1.7) or 'spdx' (SPDX 3.0)."
    • Addedinventory_asset
    • Addedinventory_list
    • Addedinventory_summary
  9. 2 tool updatesv0.93.0
    • Changedcheck1 field changed
      • addedInput schema / properties / version
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional package version when omitted from ``package`` (e.g. package='flask', version='0.12.2'). Prefer embedding in ``package`` as 'flask@0.12.2' or 'flask==0.12.2' when possible.",
        +  "title": "Version"
        +}
    • Changedingest_external_scan3 fields changed
      • addedInput schema / properties / parse_only
        Added value: +{
        +  "default": false,
        +  "description": "When true, parse locally only. When false, bulk-ingest to the control plane when AGENT_BOM_API_URL and credentials are configured.",
        +  "title": "Parse Only",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / reconcile_absent
        Added value: +{
        +  "default": false,
        +  "description": "When pushing, mark findings absent from this batch as resolved.",
        +  "title": "Reconcile Absent",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / source
        Added value: +{
        +  "default": "external_scan",
        +  "description": "Source label stored on ingested findings.",
        +  "title": "Source",
        +  "type": "string"
        +}
  10. 1 tool updatev0.90.0
    • Addedregistry_sweep_scan
  11. 15 tool updatesv0.89.2
    • Addedaccess_review
    • Addedanomaly_scan
    • Addedcloud_inventory
    • Addedcost_allocation
    • Addedcost_forecast
    • Addedcost_report
    • Addedcredential_expiry
    • Addeddrift_incidents
    • Addedidentity_grant_jit
    • Addedidentity_issue
    • Addedidentity_revoke
    • Addedidentity_revoke_jit
    • Addedidentity_rotate
    • Addednhi_discover
    • Changedscan2 fields changed
      • changedInput schema / properties / config_path / description
        Previous value: -"Path to MCP client config directory. Auto-discovers all if omitted."New value: +"Local directory to scan — a project root or an MCP client config directory. Auto-discovers all installed MCP clients if omitted. Mutually exclusive with repo_url."
      • addedInput schema / properties / repo_url
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Public git repository URL to clone and scan, e.g. 'https://github.com/org/repo'. Maps the repo's dependencies, project structure, secrets, IaC, and AI/MCP usage into an AI-BOM. Static and read-only: the repository is shallow-cloned into a temporary directory, scanned without ever executing its code, then deleted. The fastest way to point this tool at a target — no local checkout required.",
        +  "title": "Repo Url"
        +}
  12. 55 tool updatesv0.88.4
    • Addedai_inventory_scan
    • Addedaisvs_benchmark
    • Addedanalytics_query
    • Addedaudit_integrity
    • Addedaudit_query
    • Addedblast_radius
    • Addedbrowser_extension_scan
    • Addedcheck
    • Addedcis_benchmark
    • Addedcode_scan
    • Addedcompliance
    • Addedcontext_graph
    • Addeddataset_card_scan
    • Addeddiff
    • Addedexposure_paths
    • Addedfirewall_check
    • Addedfleet_scan
    • Addedgateway_status
    • Addedgenerate_sbom
    • Addedgpu_infra_scan
    • Addedgraph_export
    • Addedingest_external_scan
    • Addedintel_daily_brief
    • Addedintel_lookup
    • Addedintel_match
    • Addedintel_sources
    • Addedinventory
    • Addedlicense_compliance_scan
    • Addedmarketplace_check
    • Addedmodel_file_scan
    • Addedmodel_provenance_scan
    • Addedpolicy_check
    • Addedprompt_scan
    • Addedproxy_alerts
    • Addedproxy_status
    • Addedregistry_lookup
    • Addedremediate
    • Addedruntime_blueprint_drift
    • Addedruntime_blueprints
    • Addedruntime_correlate
    • Addedruntime_production_index
    • Addedscan
    • Addedshield_break_glass
    • Addedshield_start
    • Addedshield_status
    • Addedshield_unblock
    • Addedshould_i_deploy
    • Addedskill_scan
    • Addedskill_trust
    • Addedskill_verify
    • Addedtool_risk_assessment
    • Addedtraining_pipeline_scan
    • Addedvector_db_scan
    • Addedverify
    • Addedwhere

TDQS

A4.1/5.0

Scored across 8 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: check for single-package CVE pre-check, scan for comprehensive AI-BOM generation, remediate for fix plans, policy_check for policy evaluation, compliance for framework posture, generate_sbom for SBOM output, intel_lookup for advisory details, and exposure_paths for graph data. No overlapping or ambiguous boundaries.

Naming Consistency4/5

All tool names are lowercase and use snake_case, but not strictly verb_noun (e.g., compliance and exposure_paths are nouns). However, most are action-oriented and predictable, so the set is readable and consistent in style with minor deviations.

Tool Count5/5

With 8 tools, the server is well-scoped for an AI supply chain security domain. Each tool addresses a distinct stage or aspect (pre-check, full scan, SBOM, compliance, policy, remediation, intel, exposure paths), and none feel redundant or excessive.

Completeness4/5

The tool surface covers the core lifecycle well: scanning, checking, SBOM generation, compliance, policy evaluation, remediation, and threat intel. Minor gaps exist, such as a dedicated tool to update threat intel or manage vulnerability exceptions, but these are not critical to the primary workflows.

Maintenance

ActivityActive
ResponsivenessResponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A security scanner that evaluates installed MCP servers for vulnerabilities by aggregating findings from 16 scanning engines into detailed trust scores. It enables users to scan their local AI agent configurations or specific repository URLs for potential security risks.
    4
    2
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    Security scanner for MCP servers. Detects prompt injection, command injection, auth bypass, and excessive permissions across tools, resources, and prompts.
    38
    2
    MIT