Skip to main content
ClaudeWave

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

MCP ServersRegistry oficial3 estrellas0 forksJavaScriptMITActualizado 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.
Casos de uso

Resumen de MCP Servers

![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

Lo que la gente pregunta sobre test-intel-mcp

¿Qué es barissozudogru/test-intel-mcp?

+

barissozudogru/test-intel-mcp es mcp servers para el ecosistema de Claude AI. MCP server for test coverage intelligence: coverage analysis, untested function detection, and complexity scoring Tiene 3 estrellas en GitHub y su última actualización registrada es del 2026-08-20.

¿Cómo se instala test-intel-mcp?

+

Puedes instalar test-intel-mcp clonando el repositorio (https://github.com/barissozudogru/test-intel-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar barissozudogru/test-intel-mcp?

+

Nuestro agente de seguridad ha analizado barissozudogru/test-intel-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene barissozudogru/test-intel-mcp?

+

barissozudogru/test-intel-mcp es mantenido por barissozudogru. La última actividad registrada en GitHub es del 2026-08-20, con 0 issues abiertos.

¿Hay alternativas a test-intel-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega test-intel-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

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>

Más MCP Servers

Alternativas a test-intel-mcp