1. Conduid
  2. Developer Tools
  3. dura
MCP server · Developer Tools

dura

MCP server for DURA - Dependency Update Risk Analyzer. Integrates with Cline and other AI assistants.

39Low

Scored 18 days ago · breakdown

About dura

dura is an MCP server published by git+ArchieTansaria in the Developer Tools category: mCP server for DURA - Dependency Update Risk Analyzer. Integrates with Cline and other AI assistants. It has been installed 0 times through Conduid.

Install

Install
npx dura-mcp
Claude Code
claude mcp add dura -- npx -y dura-mcp
npx
npx -y dura-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about dura

Powered by Claude · Grounded in docs

I know everything about dura. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Analyze dependency update risks in your projects and make informed decisions about which dependencies are safe to update.

DURA is a comprehensive ecosystem designed to help developers update NPM packages safely by analyzing GitHub releases, changelogs, and version diffs to calculate a deterministic "Risk Score" for every update.


The DURA Ecosystem

DURA is accessible through three main interfaces, depending on your workflow:

  1. DURA CLI (dura-kit): For terminal usage and local scripting.
  2. DURA GitHub App: For automated CI/CD PR comments and a unified web dashboard.
  3. DURA MCP Server (dura-mcp): For integrating DURA directly into AI coding agents.

1. DURA CLI (dura-kit)

The core engine of DURA is available as a standalone CLI tool. It requires no installation to try.

Usage

# Analyze a repository instantly
npx dura-kit https://github.com/facebook/react

# Or install globally
npm install -g dura-kit
dura https://github.com/expressjs/express

Output Formats

The CLI supports multiple output formats for easy reading or machine parsing:

  • --summary (Default): Concise summary of high-risk and breaking changes.
  • --table: Displays all dependencies in a detailed table format.
  • --json: Outputs machine-readable JSON for CI integration.

For detailed usage, options, and programmatic API access, please read the DURA CLI Documentation.


2. DURA GitHub App (Client & Backend)

The DURA GitHub App automates dependency analysis for your repositories. It runs automatically on pull requests, pushes, and installations, posting comments directly on PRs and displaying historical data on a unified web dashboard.

Architecture Overview

To maintain a highly available but cost-effective infrastructure, the DURA backend utilizes a custom Event-Driven, Scale-to-Zero Architecture hosted on AWS.

Request Flow:

  1. GitHub Webhooks trigger an AWS Lambda (Proxy).
  2. The Lambda forwards the payload to the API Service and simultaneously wakes up the Worker Service.
  3. The API Service adds the analysis job to Redis (BullMQ).
  4. The Worker Service processes the job from Redis and saves results to MongoDB.
  5. After 10 minutes of inactivity, the Worker Service programmatically scales itself back down to 0.

Components

  • Frontend (/client): A modern Next.js/React application providing a premium glassmorphic dashboard to view repository health, risks, and historical scans.
  • Backend API (/github-app): An Express API running continuously on AWS ECS Fargate Spot instances. It handles authentication and serves data to the frontend.
  • Scale-to-Zero Worker (/github-app/src/workers): The heavy lifting (web scraping, dependency analysis) is done by a BullMQ worker.
    • AWS Lambda Router (/lambda/webhook-router): To save costs, the Worker service scales to zero when inactive. GitHub webhooks hit a fast AWS Lambda function first.
    • Self-Termination: After processing all jobs, the Worker monitors the Redis queue. If the queue remains completely drained for 10 minutes, the Worker calls the AWS SDK to set its own desiredCount to 0.

For detailed setup, environment variables, and deployment instructions, please read the DURA GitHub App Documentation.


3. DURA MCP Server

DURA integrates seamlessly with AI coding agents via the Model Context Protocol (MCP). This allows your AI agents to natively understand the risk of updating a dependency within their context window before writing any code.

Configuration Setup

You can provide DURA capabilities to any MCP-compatible AI agent by adding the following to your agent's MCP configuration settings (usually mcp_settings.json or similar):

{
  "mcpServers": {
    "dura-mcp": {
      "disabled": false,
      "timeout": 300,
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--tty=false",
        "archietans/dura-mcp:latest"
      ],
      "autoApprove": []
    }
  }
}

Now you can prompt your AI agent: "Analyze dependencies for https://github.com/expressjs/express and update the low-risk ones."

For detailed tool definitions and prompt examples, please read the DURA MCP Server Documentation.


Understanding Risk Levels

DURA categorizes dependency updates into three risk levels by calculating a comprehensive Risk Score (0-100):

High Risk (Score: 51-100)

  • Major version updates (breaking changes)
  • Known security vulnerabilities
  • Deprecated packages
  • Confirmed breaking changes via GitHub Release scraping

Medium Risk (Score: 16-50)

  • Minor version updates with significant behavior changes
  • "Likely" or "Unknown" breaking changes in changelogs

Low Risk (Score: 0-15)

  • Patch updates
  • Bug fixes only
  • Well-maintained dependencies with stable APIs

Development Setup

To run DURA locally:

git clone https://github.com/ArchieTansaria/dura.git
cd dura

# 1. Install dependencies across all workspaces
npm install

# 2. Run the CLI locally
cd dura-kit
npm link
dura https://github.com/facebook/react

# 3. Run the GitHub App & Client
# See github-app/README.md for environment setup

License

MIT License - see LICENSE file for details.

Made with <3 for safer dependency updates.

README mirrored from the source repository 18 days ago. The original is authoritative.

Questions

About dura

How do I install dura?

Run npx dura-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is dura safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is dura still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.