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"]
}
}
}Resumen de MCP Servers

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
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.
[](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
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!