Coverity MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Coverity MCP ServerList all Coverity projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Coverity MCP Server
A TypeScript Model Context Protocol (MCP) server that connects AI agents to Black Duck Coverity Connect for static analysis defect management.
Give your AI coding assistant direct access to Coverity projects, streams, and defect data — so it can find issues, understand their root cause via event traces, and fix them in your codebase.
Features
List projects — browse all Coverity projects you have access to
List streams — view analysis streams, optionally filtered by project
Search issues — find defects by stream with filters for checker, impact, status, and pagination
Get issue details — retrieve full defect info including the event trace (code path leading to the defect) and triage data
Two transport modes — stdio for Claude Desktop / CLI, HTTP for web-based integrations
Related MCP server: Polarion MCP Server
Prerequisites
Node.js >= 20.11.0
Access to a Coverity Connect instance with REST API enabled
A Coverity authentication key (generated from your Coverity Connect user settings)
Quick Start
git clone https://github.com/baxishrey/Coverity-MCP-Server-Typescript.git
cd Coverity-MCP-Server-Typescript
npm install
npm run buildCreate a .env file from the example:
cp .env.example .envEdit .env with your Coverity Connect credentials:
COVERITY_HOST=coverity.example.com
COVERITY_PORT=8443
COVERITY_SSL=true
COVERITY_USER=your_username
COVERITY_AUTH_KEY=your_auth_keyRun the server:
npm start # stdio transport (default)
npm run start:http # HTTP transport on port 3000Claude Desktop Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"coverity": {
"command": "node",
"args": ["/path/to/Coverity-MCP-Server-Typescript/build/index.js"],
"env": {
"COVERITY_HOST": "coverity.example.com",
"COVERITY_PORT": "8443",
"COVERITY_SSL": "true",
"COVERITY_USER": "your_username",
"COVERITY_AUTH_KEY": "your_auth_key"
}
}
}
}For HTTP transport mode, use the MCP endpoint URL instead:
{
"mcpServers": {
"coverity": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}Tools
list_projects
List all Coverity projects the authenticated user can access.
Parameters: none
Returns: project name, key, description, and associated streams.
list_streams
List Coverity streams, optionally filtered by project name.
Parameter | Type | Required | Description |
| string | no | Filter streams by project name |
Returns: stream name, language, description, and parent project.
search_issues
Search for static analysis defects in a Coverity stream.
Parameter | Type | Required | Description |
| string | yes | Stream name or ID to search in |
| string | no | Filter by checker (e.g. |
| string | no | Filter by impact: |
| string | no | Filter by status: |
| number | no | Max results, 1–200 (default 25) |
| number | no | Pagination offset (default 0) |
Returns: CID, checker, type, impact, status, file, and function for each defect.
get_issue_details
Get full details for a specific defect, including the event trace that shows the code path leading to the issue.
Parameter | Type | Required | Description |
| number | yes | Coverity Issue ID |
| string | yes | Stream name or ID containing the issue |
Returns: complete defect information with triage data (action, classification, severity, owner) and event chain (step-by-step code path with file and line numbers).
Resources
coverity://server-info
Read-only resource showing the current Coverity server connection configuration (host, port, SSL, user). Does not expose the authentication key.
Typical Workflow
A code agent using this server would typically:
list_projects— discover available projectslist_streams— find the relevant stream for the codebasesearch_issues— find defects (filter byimpact: "High"for critical ones)get_issue_details— get the event trace for a specific defectRead the source file at the reported location and apply a fix based on the event trace
Environment Variables
Variable | Required | Default | Description |
| yes | — | Coverity Connect server hostname |
| no |
| Server port |
| no |
| Use HTTPS |
| yes | — | Username |
| yes | — | Authentication key |
| no |
| Transport mode: |
| no |
| HTTP server port (only with |
Development
npm run dev # run from source without compiling
npm run build # compile TypeScript → build/
npm test # run tests
npm run lint # type-check without emittingProject Structure
src/
├── index.ts # Entry point
├── server/boot.ts # MCP server init, transport selection
├── registry/ # Auto-discovers modules in tools/resources/prompts
├── client/coverity-client.ts # Coverity REST API client
├── tools/ # MCP tool implementations
│ ├── list-projects.ts
│ ├── list-streams.ts
│ ├── search-issues.ts
│ └── get-issue-details.ts
└── resources/
└── server-info.ts # Server connection info resourceAdding a New Tool
Create a file in src/tools/ — it will be auto-discovered at startup:
import { z } from "zod";
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import type { RegisterableModule } from "../registry/types.js";
export default {
type: "tool",
name: "my-tool",
description: "Does something useful",
register(server: McpServer) {
server.tool("my_tool", "Description", {
param: z.string().describe("A parameter"),
}, async ({ param }) => {
return { content: [{ type: "text", text: `Result: ${param}` }] };
});
},
} satisfies RegisterableModule;License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceA TypeScript-aware MCP server that provides coding agents with repository discovery, code intelligence, and web project context for local codebases. It enables deep symbol navigation, diagnostic reporting, and structural analysis of monorepos without requiring full IDE integration.7111MIT
- AlicenseCqualityBmaintenanceA TypeScript MCP server that turns the Polarion ALM REST API into a tool-based interface for AI assistants.1002MIT
- Alicense-qualityDmaintenanceA lightweight TypeScript MCP server that provides AI assistants with seamless access to SonarCloud data, enabling code quality metrics, issues, and project queries.22MIT
- Alicense-qualityBmaintenanceA TypeScript/Node.js MCP server that wraps the Metabase REST API, enabling AI agents to execute queries, explore schemas, and build dashboards through structured tool calls.57MIT
Related MCP Connectors
A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/baxishrey/Coverity-MCP-Server-Typescript'
If you have feedback or need assistance with the MCP directory API, please join our Discord server