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

Veracode MCP

An MCP Server for Veracode

Unclaimed last commit 6 months ago devtools
51Fair

Scored 2 days ago · breakdown

About Veracode MCP

Veracode MCP is an MCP server published by dipsylala in the Developer Tools category: an MCP Server for Veracode. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx veracode-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 Veracode MCP

Powered by Claude · Grounded in docs

I know everything about Veracode MCP. 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.

Releases

v0.32.0Release v0.32.0 · 13 Aug 2026taskSupport is optional, to support MCP asyncronous clients. (Very limited support at the moment). MCP Tasks path (tasks/get/tasks/result/tasks/cancel) is retained for clients that do send task. README, docs/DESIGN.md, and tool…
v0.31.0Release v0.31.0 · 6 Jun 2026Includes veracode findings (VERACODE_FINDINGS.md) with documented mitigations. An additional method validation was added to reduce the risk of CWE-117 (Improper Output Neutralization for Logs)
v0.30.0Release v0.30.0 · 6 Jun 2026Removed the [deprecated healthcheck API](https://docs.veracode.com/r/c_healthcheck_intro). When the MCP is used to check the health, it uses the recommended…
v0.29.0Release v0.29.0 · 15 Apr 2026Includes a new tool - Local SCA summary. It allows a quick way of seeing the best way to upgrade per-package in order to resolve particular CVEs, and what the minimum upgrade version should be to maximise effect.
v0.28.0Release v0.28.0 · 15 Apr 2026Pipeline results can now be filtered by one or more CWE IDs

README

Veracode MCP Server

[!NOTE] This is not associated with Veracode, and does not fall under their support

⚠️ BETA - After running this regularly for months on multiple applications, I'm happy to move this to Beta. This is still early-stage software under active development, but the tools and general functionality have stabilised.

A Model Context Protocol (MCP) server implementation in Go that provides Veracode security scanning capabilities to AI assistants and LLMs. Uses stdio transport for local filesystem operations.

This is my 4th version, after writing it in TypeScript, Python, as a set of Agent Skills, and now - in Go. Go ultimately makes it easier to distribute, and I wanted more practice in it, so here we go.

Features

  • MCP Protocol Support

    • stdio transport for local process communication
    • JSON-RPC 2.0 message handling
    • Tool invocation capabilities
    • Resource access
    • Protocol version negotiation (supports 2024-11-05 and newer including 2025-06-18)
  • Veracode Integration

    • Platform Dynamic (DAST) findings
    • Platform Static (SAST) findings
    • Platform SCA (Software Composition Analysis) findings
    • Workspace packaging for scan preparation
    • Static Pipeline and scan results
    • Finding details - Data paths and dynamic request/responses

Installation

Download from Releases

Download the latest pre-built binary from the Releases page:

Windows · macOS · Linux | x64 · ARM64

Extract and place the executable in a directory of your choice (e.g., C:\Program Files\VeracodeMCP\ on Windows or /usr/local/bin/ on macOS/Linux).

Install Veracode CLI (Required)

Some tools (such as package-workspace, pipeline-scan, run-sca-scan) require the Veracode CLI to be installed and available in your system PATH.

Given the Veracode installation process requires elevated privileges, we took the decision for the user to perform the installation themselves, rather than an MCP requesting elevated privileges and installing software on a machine.

Install the Veracode CLI:

[!NOTE] Requirements: this is only necessary for running some of the local tools like packaging, Veracode SCA agent scanning and pipeline scanning. If you wish to only use data from the platform like platform SAST, DAST and 'Upload and Scan' SCA it's not necessary.

Windows (Admin PowerShell):

Set-ExecutionPolicy AllSigned -Scope Process -Force
iex (iwr https://tools.veracode.com/veracode-cli/install.ps1)

macOS/Linux:

curl -fsS https://tools.veracode.com/veracode-cli/install | sh

For detailed installation instructions and alternative methods, see the official Veracode CLI installation guide.

Configuration

Veracode API Credentials

Authenticate the CLI:

After installation, configure your API credentials via:

  1. Veracode CLI-based configuration (Recommended)
veracode configure
  1. File-based configuration (Recommended)

    Create ~/.veracode/veracode.yml:

    api:
      key-id: YOUR_API_KEY_ID
      key-secret: YOUR_API_KEY_SECRET
    

    Setup commands:

    Linux/macOS:

    mkdir -p ~/.veracode
    cat > ~/.veracode/veracode.yml << EOF
    api:
      key-id: YOUR_API_KEY_ID
      key-secret: YOUR_API_KEY_SECRET
    EOF
    chmod 600 ~/.veracode/veracode.yml
    

    Windows PowerShell:

    New-Item -ItemType Directory -Path "$env:USERPROFILE\.veracode" -Force
    @"
    api:
      key-id: YOUR_API_KEY_ID
      key-secret: YOUR_API_KEY_SECRET
    "@ | Out-File -FilePath "$env:USERPROFILE\.veracode\veracode.yml" -Encoding UTF8
    
  2. Environment variables (Fallback)

    export VERACODE_API_ID="YOUR_API_KEY_ID"
    export VERACODE_API_KEY="YOUR_API_KEY_SECRET"
    

See credentials/README.md for detailed information.

Usage

Command Line Options

Options:
  -verbose
        Enable verbose logging to stderr (disabled by default)
  -log string
        Log file path for debugging (recommended for stdio mode)
  -version
        Display version information

Important: When using stdio mode with MCP clients (like VS Code or Claude Desktop), -verbose generates stderr output which can interfere with some JSON-RPC clients. If necessary, add -log <filepath> to write debug information to a file.

Stdio Mode

The server runs in stdio mode for local integrations where it operates as a subprocess. This is the only supported mode as the server requires local filesystem access for workspace operations.

Codex:

via the command-line:

codex mcp add veracode -- "\path\to\veracode-mcp.exe"

Add to your MCP client configuration (e.g., ~/.codex/config.toml):

[mcp_servers.Veracode]
command = "/path/to/veracode-mcp.exe"
args = ["-log", "/path/to/veracode-mcp.log"]  # Optional but recommended for debugging

Claude Desktop:

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "veracode": {
      "command": "/path/to/veracode-mcp.exe",
      "args": ["-log", "/path/to/veracode-mcp.log"]
    }
  }
}

Claude CLI

claude mcp add --transport stdio veracode "\path\to\veracode-mcp.exe"

VS Code:

{
  "servers": {
    "veracode": {
      "command": "/path/to/veracode-mcp.exe",
      "cwd": "${workspaceFolder}",
      "args": ["-log", "/path/to/veracode-mcp.log"]
    },
  }
}

Veracode platform work

To assign a Veracode profile to code you're working on, create a .veracode-workspace.json file with the following contents in your code area:

This will allow the MCP to know which profile you're focusing on in your IDE/TUI.

The contents are as follows:

{
  "name": "{profile name}"
}

example:

{
  "name": "Verademo"
}

Available MCP Tools

The server provides these Veracode-specific tools:

API:

  • api-health - Verify Veracode API connectivity and credentials

Platform:

  • dynamic-findings - Retrieve runtime security vulnerabilities from Dynamic Analysis (DAST) scans
  • static-findings - Retrieve source code vulnerabilities from Static Analysis (SAST) scans
  • sca-findings - Retrieve third-party component vulnerabilities from Software Composition Analysis
  • finding-details - Get detailed information about a specific finding

Pipeline:

  • package-workspace - Package workspace files for Veracode upload
  • pipeline-scan - Start an asynchronous pipeline scan, with the largest packaged file as default
  • pipeline-status - Check the status of a Pipeline Scan
  • pipeline-findings - Get results from Veracode Pipeline Scans
  • pipeline-detailed-results - Get detailed results from Pipeline Scans with full flaw information

SCA:

  • run-sca-scan - Run Software Composition Analysis scan on a directory to identify vulnerable dependencies
  • local-sca-summary - Group local SCA findings by component showing the minimum upgrade version to fix all CVEs
  • local-sca-findings - Read and parse local SCA scan results from veracode.json file
  • local-iac-findings - Read and parse local IaC scan results (Dockerfile and configuration misconfigurations)

Note: Use the tools/list MCP method to see all available tools with their complete parameter schemas and documentation.


For Developers

See docs/CONTRIBUTING.md for building from source, running tests, adding new tools, and the full developer documentation index.

Contributing

⚠️ This is beta software. Contributions are welcome — see docs/CONTRIBUTING.md.

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

Questions

About Veracode MCP

How do I install Veracode MCP?

Run npx veracode-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 Veracode MCP safe to use with an AI agent?

Its trust score is 51 out of 100 (fair). 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 Veracode MCP still maintained?

Yes — the latest release is v0.32.0 (13 Aug 2026), and the last commit was 6 months ago. The repository has 1 stars and 0 open issues.