MCP server for test coverage intelligence: coverage analysis, untested function detection, and complexity scoring
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add test-intel-mcp -- npx -y @barissozudogru/test-intel-mcp{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}MCP Servers overview

Test coverage intelligence MCP server for TypeScript and JavaScript projects. Analyzes coverage reports, detects untested functions, and scores cyclomatic complexity locally, with no external services and no authentication required.
---
## Tools
| Tool | Description |
|---|---|
| `analyze_test_coverage` | Parse lcov, istanbul JSON, or cobertura XML reports and surface uncovered files, functions, lines, and branches |
| `find_untested_functions` | Scan a source directory for functions with no corresponding test file |
| `get_function_complexity` | Compute cyclomatic complexity per function to prioritize what to test first |
| `suggest_test_cases` | Analyze a specific function and generate categorized test case suggestions |
---
## Setup
### Option A: stdio (local)
#### Claude Desktop
Config file: `~/Library/Application Support/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
#### Claude Code
```bash
claude mcp add test-intel -- npx -y @barissozudogru/test-intel-mcp
```
#### Cursor
Config file: `~/.cursor/mcp.json`
```json
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
#### Windsurf
Config file: `~/.codeium/windsurf/mcp_config.json`
```json
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
#### VS Code + Copilot
Config file: `.vscode/mcp.json`
```json
{
"servers": {
"test-intel": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
#### Cline
```json
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
#### Continue.dev
Config file: `~/.continue/config.yaml`
```yaml
mcpServers:
- name: test-intel
command: npx
args:
- -y
- "@barissozudogru/test-intel-mcp"
```
#### Zed
Config file: `~/.config/zed/settings.json`
```json
{
"context_servers": {
"test-intel": {
"command": {
"path": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
}
```
#### JetBrains (IntelliJ, WebStorm, etc.)
```json
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
```
---
### Option B: HTTP (remote clients)
Start the server:
```bash
npx @barissozudogru/test-intel-mcp --http
# or
PORT=3000 TRANSPORT=http npx @barissozudogru/test-intel-mcp
```
The server listens on `http://0.0.0.0:3000/mcp`. A health check is available at `/health`.
#### Cursor (HTTP)
```json
{
"mcpServers": {
"test-intel": {
"url": "http://localhost:3000/mcp"
}
}
}
```
#### VS Code + Copilot (HTTP)
```json
{
"servers": {
"test-intel": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
```
#### Windsurf (HTTP)
```json
{
"mcpServers": {
"test-intel": {
"serverUrl": "http://localhost:3000/mcp"
}
}
}
```
#### Continue.dev (HTTP)
```yaml
mcpServers:
- name: test-intel
url: http://localhost:3000/mcp
```
---
### Option C: Docker
```bash
docker build -t test-intel-mcp .
docker run -p 3000:3000 -v $(pwd):/project -w /project test-intel-mcp
```
Then configure any HTTP client to point at `http://localhost:3000/mcp`.
---
## Supported Coverage Formats
| Format | Extension | Generator |
|---|---|---|
| lcov | `.info` | Jest, Vitest, nyc, Istanbul |
| istanbul | `.json` | Jest, nyc, Istanbul |
| cobertura | `.xml` | Jest, pytest-cov, JaCoCo |
Format is auto-detected from file extension when `format` is omitted.
---
## Requirements
- Node.js >= 18
- No authentication or network access required
- All file analysis runs locally
---
## License
MIT
What people ask about test-intel-mcp
What is barissozudogru/test-intel-mcp?
+
barissozudogru/test-intel-mcp is mcp servers for the Claude AI ecosystem. MCP server for test coverage intelligence: coverage analysis, untested function detection, and complexity scoring It has 3 GitHub stars and its last recorded update is dated 2026-08-20.
How do I install test-intel-mcp?
+
You can install test-intel-mcp by cloning the repository (https://github.com/barissozudogru/test-intel-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is barissozudogru/test-intel-mcp safe to use?
+
Our security agent has analyzed barissozudogru/test-intel-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains barissozudogru/test-intel-mcp?
+
barissozudogru/test-intel-mcp is maintained by barissozudogru. The last recorded GitHub activity is dated 2026-08-20, with 0 open issues.
Are there alternatives to test-intel-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy test-intel-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/barissozudogru-test-intel-mcp)<a href="https://claudewave.com/repo/barissozudogru-test-intel-mcp"><img src="https://claudewave.com/api/badge/barissozudogru-test-intel-mcp" alt="Featured on ClaudeWave: barissozudogru/test-intel-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!