Coverity MCP Server
A TypeScript MCP server that connects AI agents to Black Duck Coverity Connect for static analysis defect management, enabling browsing projects, streams, and defects with event traces.
README
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
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 build
Create a .env file from the example:
cp .env.example .env
Edit .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_key
Run the server:
npm start # stdio transport (default)
npm run start:http # HTTP transport on port 3000
Claude 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 |
|---|---|---|---|
projectName |
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 |
|---|---|---|---|
streamId |
string | yes | Stream name or ID to search in |
checker |
string | no | Filter by checker (e.g. RESOURCE_LEAK, NULL_RETURNS) |
impact |
string | no | Filter by impact: High, Medium, Low |
status |
string | no | Filter by status: New, Triaged, Fixed, Dismissed |
limit |
number | no | Max results, 1–200 (default 25) |
offset |
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 |
|---|---|---|---|
cid |
number | yes | Coverity Issue ID |
streamId |
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 defect- Read the source file at the reported location and apply a fix based on the event trace
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
COVERITY_HOST |
yes | — | Coverity Connect server hostname |
COVERITY_PORT |
no | 8443 |
Server port |
COVERITY_SSL |
no | true |
Use HTTPS |
COVERITY_USER |
yes | — | Username |
COVERITY_AUTH_KEY |
yes | — | Authentication key |
TRANSPORT |
no | stdio |
Transport mode: stdio or http |
PORT |
no | 3000 |
HTTP server port (only with TRANSPORT=http) |
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 emitting
Project 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 resource
Adding 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.