MCP Directory

safedep/vet

GitHub
Developer Tools

vet-mcp checks open source packages—like those suggested by AI coding tools—for vulnerabilities and malicious code. It supports npm and PyPI, and runs locally via Docker or as a standalone binary for fast, automated vetting.

Direct install

Run the underlying MCP server directly — without Agent-CoreX routing.

npx -y vet

Use with Agent-CoreX

Agent-CoreX intelligently routes which tools from safedep/vet your AI agent actually needs per request — reducing token usage and cost.

agent-corex.json

{
  "mcpServers": {
    "vet": {
      "command": "npx",
      "args": [
        "-y",
        "vet"
      ]
    }
  }
}

Route safedep/vet intelligently

Connect in 2 minutes. Only pay for the tools your agent actually uses.

Installation Guide

Use with Agent-CoreX

Recommended: intelligent tool routing, lower costs

uvx agent-corex mcp add vet

Agent-CoreX selects only the tools your agent needs, cutting token usage by up to 60%.

Direct Install

Use safedep/vet directly without routing

npx -y vet

New to Agent-CoreX? View setup guide →

safedep/vet MCP Server — Agent-CoreX