Skip to main content
Glama

MCP Veracode

MCP server para consultar Veracode desde Claude Code.

Tools

Tool

Descripcion

veracode_applications

Listar y buscar aplicaciones

veracode_findings

Vulnerabilidades y flaws de una aplicacion

veracode_scan_status

Estado de scans y summary report

veracode_policy_compliance

Estado de cumplimiento de politicas

Related MCP server: bd-skill

Instalacion

Agregar a ~/.claude/mcp.json:

{
  "mcpServers": {
    "veracode-mcp": {
      "command": "npx",
      "args": ["-y", "github:landscapedotcl/mcp-veracode"],
      "env": {
        "VERACODE_API_ID": "tu_api_id",
        "VERACODE_API_SECRET": "tu_api_secret"
      }
    }
  }
}

Reiniciar Claude Code para que cargue el MCP server.

Autenticacion

Usa HMAC-SHA-256 con API ID y API Secret, el metodo estandar de Veracode.

Las credenciales se generan en Veracode > Account Settings > API Credentials.

Uso

# Listar aplicaciones
veracode_applications({ name: "mi-app" })

# Findings de una aplicacion
veracode_findings({ applicationGuid: "guid-aqui", scanType: "STATIC", severityGte: 3 })

# Estado de scans
veracode_scan_status({ applicationGuid: "guid-aqui" })

# Apps que no cumplen politica
veracode_policy_compliance({ policyCompliance: "DID_NOT_PASS" })

Available Tools

4 tools
veracode_applicationsC

List and search Veracode application profiles

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoFilter by application name (partial match)
policyComplianceNoFilter by policy compliance status
scanTypeNoFilter by scan type
pageNoPage number (0-indexed, default 0)
sizeNoPage size (default 50)

TDQS

C2.9/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 mentions 'list and search' but doesn't describe key behaviors such as pagination handling (implied by page/size parameters), rate limits, authentication requirements, or the format of returned data. This leaves significant gaps for a tool with 5 parameters and no output schema.

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 a single, efficient sentence that front-loads the core functionality ('List and search Veracode application profiles') with zero wasted words. It's appropriately sized for the tool's scope.

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?

Given the tool's complexity (5 parameters, no output schema, no annotations), the description is incomplete. It lacks details on return values, error handling, pagination behavior, and how it differs from sibling tools. With no annotations to fill gaps, this minimal description is insufficient for effective agent use.

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?

The input schema has 100% description coverage, providing clear details for all 5 parameters (e.g., name filtering with partial match, policyCompliance and scanType enums, pagination defaults). The description adds no additional parameter semantics beyond what's in the schema, so it meets the baseline for high schema coverage.

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 purpose as 'List and search Veracode application profiles,' which includes both listing and searching functions. It specifies the resource (application profiles) and platform (Veracode), but doesn't differentiate from sibling tools like 'veracode_findings' or 'veracode_policy_compliance' that might also involve application data.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'veracode_findings' for detailed findings or 'veracode_policy_compliance' for compliance checks, nor does it specify prerequisites or contexts for application profile listing versus searching.

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

veracode_findingsC

Get vulnerability findings/flaws for a Veracode application

ParametersJSON Schema
NameRequiredDescriptionDefault
applicationGuidYesApplication GUID
scanTypeNoFilter by scan type (SCA must be queried alone)
severityNoExact severity level (0-5)
severityGteNoMinimum severity level (0-5)
violatesPolicyNoOnly findings that violate policy
cweNoFilter by CWE ID
newFindingsNoOnly newly discovered findings
pageNoPage number (0-indexed)
sizeNoPage size

TDQS

C2.9/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 implies a read operation ('Get') but doesn't specify if it's paginated (though parameters suggest it), rate-limited, requires authentication, or what the output format is. This is a significant gap for a tool with 9 parameters and no output schema, making it inadequate for safe and effective use.

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 a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded and wastes no space, making it easy to parse quickly.

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?

Given the complexity (9 parameters, no annotations, no output schema), the description is incomplete. It doesn't address behavioral aspects like pagination, error handling, or output structure, which are critical for a data retrieval tool. The high parameter count and lack of structured support make this description insufficient for reliable agent use.

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 the schema fully documents all 9 parameters. The description adds no additional meaning beyond the schema, such as explaining interactions between parameters (e.g., 'severity' vs. 'severityGte') or usage notes. This meets the baseline for high schema coverage but doesn't enhance understanding.

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 verb ('Get') and resource ('vulnerability findings/flaws for a Veracode application'), making the purpose specific and understandable. However, it doesn't differentiate from sibling tools like 'veracode_policy_compliance' or 'veracode_scan_status' which might also relate to findings or application data.

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 provides no guidance on when to use this tool versus alternatives like 'veracode_applications' or 'veracode_policy_compliance'. It lacks context about prerequisites, such as needing an application GUID, or exclusions, like not using it for compliance checks. This leaves the agent with minimal usage direction.

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

veracode_policy_complianceC

Check policy compliance status for Veracode applications

ParametersJSON Schema
NameRequiredDescriptionDefault
applicationGuidNoSpecific application GUID (omit to list all non-compliant)
policyComplianceNoFilter by compliance status (default: DID_NOT_PASS)
pageNoPage number (0-indexed)
sizeNoPage size

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does ('Check policy compliance status') but fails to describe key behaviors like whether this is a read-only operation, if it requires authentication, potential rate limits, or what the output format looks like. For a tool with no annotation coverage, this is a significant gap in transparency.

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 a single, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy for an agent to parse quickly and understand the core functionality.

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?

Given the complexity of checking policy compliance with 4 parameters and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., a list of applications with compliance details), how pagination works with the 'page' and 'size' parameters, or behavioral aspects like error handling. This leaves gaps for an agent to correctly invoke and interpret results.

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?

The input schema has 100% description coverage, so the schema fully documents all four parameters. The description adds no additional meaning beyond what's in the schema, such as explaining relationships between parameters or usage nuances. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but also doesn't detract.

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 purpose with a specific verb ('Check') and resource ('policy compliance status for Veracode applications'), making it immediately understandable. However, it doesn't explicitly distinguish this tool from its sibling tools like 'veracode_applications' or 'veracode_findings', which might also relate to compliance information, preventing a perfect score.

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 provides no guidance on when to use this tool versus alternatives, such as the sibling tools listed. It lacks context about prerequisites, typical use cases, or exclusions, leaving the agent to infer usage based on the tool name and parameters alone.

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

veracode_scan_statusC

Get scan status and summary report for a Veracode application

ParametersJSON Schema
NameRequiredDescriptionDefault
applicationGuidYesApplication GUID

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states it 'Get[s] scan status and summary report', implying a read-only operation, but doesn't clarify aspects like authentication requirements, rate limits, error handling, or what the 'summary report' entails. This leaves significant gaps for a tool that likely interacts with external APIs.

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, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, though it could be slightly more structured by including key details like authentication or output format.

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?

Given the complexity of interacting with a Veracode API (implied by the tool name), no annotations, and no output schema, the description is incomplete. It lacks critical context such as authentication needs, rate limits, error scenarios, and details on the 'summary report' output. This makes it inadequate for an agent to use the tool effectively without additional assumptions.

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?

The schema description coverage is 100%, with the single parameter 'applicationGuid' clearly documented in the schema. The description adds no additional meaning beyond what the schema provides, such as explaining the format of the GUID or where to find it. Given the high schema coverage, a baseline score of 3 is appropriate as the description doesn't compensate but doesn't need to.

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 verb 'Get' and the resource 'scan status and summary report for a Veracode application', making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'veracode_applications' or 'veracode_findings', which might also retrieve application-related information.

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 provides no guidance on when to use this tool versus alternatives like 'veracode_applications' or 'veracode_findings'. It lacks context about prerequisites, such as needing an existing application, or exclusions, leaving the agent to infer usage based on the tool name alone.

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 observedveracode_applications
    • First observedveracode_findings
    • First observedveracode_policy_compliance
    • First observedveracode_scan_status

TDQS

B3.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose targeting different aspects of the Veracode security platform: applications management, vulnerability findings, policy compliance, and scan status. There is no overlap or ambiguity between these four functions.

Naming Consistency5/5

All tool names follow the exact same pattern: 'veracode_' prefix followed by a descriptive noun phrase (applications, findings, policy_compliance, scan_status). This creates perfect consistency and predictability across the toolset.

Tool Count4/5

Four tools is a reasonable count for a security scanning platform interface, though it feels slightly minimal. The tools cover core functions but might benefit from additional operations like initiating scans or managing scan configurations.

Completeness4/5

The toolset provides good coverage for monitoring and reporting on Veracode security scans, including applications, findings, compliance, and status. However, there are minor gaps in action-oriented operations like initiating new scans or managing scan configurations that would complete the workflow.

Maintenance

ActivityInactive
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

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    An MCP server that provides Claude Code with access to Black Duck SCA for managing vulnerabilities, licenses, and policy violations through natural language. It enables users to query component risks and execute Black Duck Detect scans directly within their workspace.
    -
  • A
    license
    A
    quality
    B
    maintenance
    This MCP server transforms Claude into a comprehensive security analyst by providing access to 27 security tools across 21 APIs for vulnerability intelligence. It enables users to query multiple sources like NVD, EPSS, CISA KEV, and threat intelligence platforms in parallel to get correlated security insights and risk assessments for CVEs.
    28
    1,452
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Security scanning MCP server that connects Claude to RepoMend findings, enabling vulnerability management and automated fix drafting.
    MIT

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/landscapedotcl/mcp-veracode'

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