Skip to main content
ClaudeWave

MCP server for test coverage intelligence: coverage analysis, untested function detection, and complexity scoring

MCP ServersOfficial Registry3 stars0 forksJavaScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/21/2026
Install in Claude Code / Claude Desktop
Method: NPX · @barissozudogru/test-intel-mcp
Claude Code CLI
claude mcp add test-intel-mcp -- npx -y @barissozudogru/test-intel-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "test-intel-mcp": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

![test-intel-mcp](./assets/banner-test-intel.svg)

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
code-qualitycoveragedeveloper-toolslcovmcpmcp-servermodel-context-protocoltest-coveragetestingtypescript

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.

Featured on ClaudeWave: barissozudogru/test-intel-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/barissozudogru-test-intel-mcp)](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

test-intel-mcp alternatives