Skip to main content
Glama

Blast Radius MCP ๐ŸŒŒ๐Ÿš€

Blast Radius is an AI-powered Dependency Decision Engine & Visual Security OS built for the Model Context Protocol (MCP). It allows AI agents like Claude to natively reason about software supply chains, simulate upgrade impacts, trace vulnerability attack paths, and generate a 3D visualization of your project's dependency topology.

Why this exists

Most security scanners just tell you: โ€œYou have a HIGH vulnerability in lodash.โ€

Blast Radius tells your AI: โ€œThe vulnerability in lodash is 3 levels deep. It is reachable via your express entry point. If you try to upgrade zod to fix another issue, it will break your production build because of a peer-dependency mismatch in package-b.โ€

Instead of a flat list of CVEs, Blast Radius treats your dependencies as a living graph that AI agents can query and manipulate.


Related MCP server: NOMIK

โšก Core Capabilities

The MCP server exposes four powerful tools to Claude:

1. dependency_blast_radius

Calculates the exact "blast radius" if a package is removed or compromised, mapped out by depth.

  • Maps direct vs. transitive impact.

  • Helps the AI understand how deeply embedded a library is before suggesting a refactor.

2. dependency_upgrade_analysis

Simulates the impact of upgrading an npm package by evaluating precise semver constraints across the entire graph. Example AI Query: "Can I safely upgrade zod to 4.0.0?"

{
  "upgrade": { "package": "zod", "from": ["3.25.76"], "to": "4.0.0" },
  "impact": {
    "depth_1": [
      {
        "name": "blast-radius-mcp",
        "status": "BREAK",
        "reason": "requires ^3.22.4 (does not satisfy 4.0.0)"
      },
      {
        "name": "@modelcontextprotocol/sdk",
        "status": "SAFE",
        "reason": "supports ^3.25 || ^4.0"
      }
    ]
  },
  "summary": { "safe": 1, "warning": 0, "break": 1 }
}

3. security_audit_graph

Queries the live Open Source Vulnerability (OSV) database and runs a Reverse BFS traversal to map out Attack Paths.

  • Doesn't just find vulnerabilitiesโ€”it traces exactly how an attacker reaches them from your root project.

  • Prioritizes risks using a bespoke Severity / Reachability Depth algorithm.

4. open_dependency_visualizer

A visual "Security Operating System." Returns a deep-link to an interactive 3D Galaxy Viewer served directly from the MCP process.

  • โญ Gold Stars: Root applications

  • ๐ŸŒŽ Blue Planets: Direct dependencies

  • ๐Ÿ”ด Pulsing Supernovas: Vulnerable packages

  • โšก Glowing Edges: Traced attack paths


๐Ÿ—๏ธ Architecture

                 Blast Radius MCP
                       |
        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
        |                             |
        v                             v
   MCP stdio                    Express Server
   (Claude API)                 (localhost:3000)
        |                             |
 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”                      v
 |             |              React 3D Galaxy
Upgrade      OSV               (force-graph)
 Engine     Engine

๐Ÿš€ Getting Started

1. Build the project

npm install
npm run build

cd ui
npm install
npm run build

2. Configure Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "blast-radius": {
      "command": "node",
      "args": ["/absolute/path/to/blast-radius-mcp/dist/index.js"]
    }
  }
}

3. Ask Claude!

Try asking Claude:

  • "Analyze the blast radius of typescript in this project."

  • "Simulate an upgrade of express to version 5.0.0. What breaks?"

  • "Run a security audit and show me the attack paths."

  • "Open the 3D visualizer and focus on the lodash package."


๐Ÿ”ฎ Future Roadmap (Phase 3)

Because the Security Engine relies on the agnostic OSV Database, the core intelligence layer already supports Python (pip), Rust (cargo), and Go (go). Future updates will introduce lockfile parsers for these ecosystems, instantly granting them full upgrade simulation and 3D attack-path visualization capabilities.

Available Tools

4 tools
dependency_blast_radiusC

Analyzes dependency blast radius using reverse BFS.

ParametersJSON Schema
NameRequiredDescriptionDefault
packageNameYes
lockfilePathNo

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It hints at methodology ('reverse BFS') but does not mention whether the operation is read-only, required permissions, performance characteristics, or what the return format is. This is a significant gap for a tool with no annotation safety hints.

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 a single concise sentence with no wasted words, which is good for front-loading. However, it is too terse for the tool's complexityโ€”there are two parameters and sibling tools that require differentiation. The brevity sacrifices necessary information, making it under-specified rather than appropriately concise.

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

Completeness2/5

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

The description is insufficiently complete. There are no annotations, no output schema, and both parameters are undocumented in the schema. The description only provides a high-level purpose and algorithm hint, leaving critical details like lockfilePath semantics, return values, and usage context unresolved for a non-trivial tool.

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

Parameters1/5

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

The schema has 2 parameters (packageName, lockfilePath) with 0% description coverage, and the tool description does not mention either parameter. It fails to explain what packageName or lockfilePath mean or how they should be used, forcing the agent to infer from the parameter names alone. This is a complete lack of parameter semantics.

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's function: 'Analyzes dependency blast radius using reverse BFS.' The verb 'analyzes' and resource 'dependency blast radius' are specific, and the method 'reverse BFS' adds technical clarity. While it doesn't explicitly name sibling tools, the focus on blast radius distinguishes it from dependency_upgrade_analysis, security_audit_graph, and open_dependency_visualizer.

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

Usage Guidelines2/5

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

The description offers no guidance on when to use this tool versus its siblings. It simply states what it does, leaving usage context implicit. There are no exclusions, prerequisites, or explicit alternatives mentioned.

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

dependency_upgrade_analysisC

Simulates dependency upgrade impact.

ParametersJSON Schema
NameRequiredDescriptionDefault
packageNameYes
lockfilePathNo
targetVersionYes

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden. The verb 'simulates' hints at non-destructive analysis, but the description does not clarify whether any files are modified, what the output format is, or any side effects. Very little behavioral context is disclosed.

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 a single, concise sentence with no fluff or redundancy. It is front-loaded and efficient, though very brief. It earns a high score for conciseness because every word is meaningful, but it is under-specified overall.

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

Completeness1/5

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

The tool has 3 parameters, no annotations, no output schema, and 0% schema description coverage. The description 'Simulates dependency upgrade impact' is far too minimal to be complete. It does not explain what 'impact' means, what inputs are required, what the tool returns, or how it behaves. An agent would struggle to invoke this correctly without additional context.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no information about the parameters (packageName, lockfilePath, targetVersion). The description does not compensate for the lack of parameter documentation, leaving the agent to infer semantics from names alone.

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 states a clear action ('simulates') and resource ('dependency upgrade impact'), which is specific enough to understand the core function. However, it does not explicitly distinguish this tool from sibling tools like dependency_blast_radius or security_audit_graph, so it lacks sibling differentiation.

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

Usage Guidelines2/5

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

No usage guidance is provided. The description does not mention when to use this tool, when not to use it, or alternatives. There is no context to help an agent decide between this and the sibling tools.

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

open_dependency_visualizerD

Launches 3D dependency security galaxy.

ParametersJSON Schema
NameRequiredDescriptionDefault
focusNo

TDQS

D1.3/5.0
Behavior1/5

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

No annotations are provided, so the description must disclose behavior. It only says 'launches' without indicating side effects, permissions, or the nature of the 'galaxy' (e.g., read-only visualization). There is no mention of what happens upon execution or what the user will see.

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

Conciseness2/5

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

The description is extremely short (six words), but this is under-specification rather than effective conciseness. It does not front-load actionable information and instead uses a vague metaphor that obscures the tool's function.

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

Completeness1/5

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

Given the tool's sibling tools are all security dependency analyses, this description is far too minimal. It does not explain what the 'galaxy' visualization represents, what the output is, or how the 'focus' parameter affects the result. With no annotations and no output schema, the description fails to provide a complete picture.

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

Parameters1/5

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

The input schema has one optional 'focus' string parameter with no description and 0% schema description coverage. The description does not mention this parameter at all, so the agent cannot infer its purpose or acceptable values.

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

Purpose2/5

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

The description 'Launches 3D dependency security galaxy' includes a verb and a metaphorical resource, but the resource is vague and unclear. It could imply a visualization, a game, or an analysis, and it does not distinguish the tool from siblings like dependency_blast_radius or security_audit_graph.

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

Usage Guidelines1/5

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

There is no guidance on when to use this tool versus alternatives. The description contains no context, prerequisites, or exclusions, leaving the agent entirely without direction for selection.

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

security_audit_graphC

Runs OSV vulnerability analysis and attack path mapping.

ParametersJSON Schema
NameRequiredDescriptionDefault
lockfilePathNo

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for disclosing behavior. It only says 'Runs', which implies an action, but does not specify whether it is read-only, whether it modifies files, requires permissions, or produces side effects. This lack of detail is inadequate for a security tool.

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 a single, concise sentence that front-loads the core action and resource. It is efficiently worded, though slightly vague terms like 'attack path mapping' could be elaborated without compromising conciseness.

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

Completeness2/5

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

For a tool with one parameter, no annotations, and no output schema, the description is too sparse. It does not explain what OSV analysis entails, expected outputs, prerequisites, or how it relates to sibling tools. An agent would struggle to invoke it correctly without additional context.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it does not mention the 'lockfilePath' parameter at all. The parameter name is self-explanatory, but the description fails to explicitly connect it to the analysis, leaving the agent without added semantic meaning.

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 uses a specific verb ('Runs') and resource ('OSV vulnerability analysis and attack path mapping'), clearly distinguishing it from siblings like dependency_blast_radius or open_dependency_visualizer. The mention of OSV and attack path mapping makes the tool's focus unambiguous.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives such as dependency_blast_radius or dependency_upgrade_analysis. The description merely states what it does, leaving the agent to infer appropriate usage context.

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. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observeddependency_blast_radius
    • First observeddependency_upgrade_analysis
    • First observedopen_dependency_visualizer
    • First observedsecurity_audit_graph

TDQS

C2.5/5.0
Disambiguation4/5

Each tool has a distinct focus: blast radius analysis, upgrade impact simulation, security auditing, and visualization. However, dependency_blast_radius and dependency_upgrade_analysis both deal with impact analysis, which could cause mild confusion without careful description reading.

Naming Consistency3/5

All names use snake_case, but the pattern is inconsistent: three are noun phrases (dependency_blast_radius, dependency_upgrade_analysis, security_audit_graph) while one is a verb phrase (open_dependency_visualizer). The 'dependency' prefix is repeated, but the lack of a uniform verb_noun structure reduces predictability.

Tool Count5/5

With only 4 tools, the server is tightly scoped to its stated purpose of dependency and security analysis. Each tool covers a distinct aspect, and the count feels appropriate rather than thin or bloated.

Completeness4/5

The server covers core analysis, upgrade simulation, security auditing, and visualization, which covers the main workflows for dependency blast radius. Minor gaps exist, such as missing a simple dependency graph listing or direct comparison tools, but these are not critical for the domain.

Maintenance

ActivityMaintained
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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/tspscale/blast-radius-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server