Skip to main content
Glama
barissozudogru

test-intel-mcp

test-intel-mcp

Servidor MCP de inteligencia de cobertura de pruebas para proyectos TypeScript y JavaScript. Analiza informes de cobertura, detecta funciones no probadas y puntúa la complejidad ciclomática localmente, sin servicios externos ni autenticación requerida.


Herramientas

Herramienta

Descripción

analyze_test_coverage

Analiza informes lcov, istanbul JSON o cobertura XML y muestra archivos, funciones, líneas y ramas no cubiertas

find_untested_functions

Escanea un directorio de código fuente en busca de funciones sin archivo de prueba correspondiente

get_function_complexity

Calcula la complejidad ciclomática por función para priorizar qué probar primero

suggest_test_cases

Analiza una función específica y genera sugerencias de casos de prueba categorizadas


Related MCP server: Chisel

Configuración

Opción A: stdio (local)

Claude Desktop

Archivo de configuración: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "test-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

Claude Code

claude mcp add test-intel -- npx -y @barissozudogru/test-intel-mcp

Cursor

Archivo de configuración: ~/.cursor/mcp.json

{
  "mcpServers": {
    "test-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

Windsurf

Archivo de configuración: ~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "test-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

VS Code + Copilot

Archivo de configuración: .vscode/mcp.json

{
  "servers": {
    "test-intel": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

Cline

{
  "mcpServers": {
    "test-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

Continue.dev

Archivo de configuración: ~/.continue/config.yaml

mcpServers:
  - name: test-intel
    command: npx
    args:
      - -y
      - "@barissozudogru/test-intel-mcp"

Zed

Archivo de configuración: ~/.config/zed/settings.json

{
  "context_servers": {
    "test-intel": {
      "command": {
        "path": "npx",
        "args": ["-y", "@barissozudogru/test-intel-mcp"]
      }
    }
  }
}

JetBrains (IntelliJ, WebStorm, etc.)

{
  "mcpServers": {
    "test-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/test-intel-mcp"]
    }
  }
}

Opción B: HTTP (clientes remotos)

Inicie el servidor:

npx @barissozudogru/test-intel-mcp --http
# or
PORT=3000 TRANSPORT=http npx @barissozudogru/test-intel-mcp

El servidor escucha en http://0.0.0.0:3000/mcp. Hay una comprobación de salud disponible en /health.

Cursor (HTTP)

{
  "mcpServers": {
    "test-intel": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

VS Code + Copilot (HTTP)

{
  "servers": {
    "test-intel": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    }
  }
}

Windsurf (HTTP)

{
  "mcpServers": {
    "test-intel": {
      "serverUrl": "http://localhost:3000/mcp"
    }
  }
}

Continue.dev (HTTP)

mcpServers:
  - name: test-intel
    url: http://localhost:3000/mcp

Opción C: Docker

docker build -t test-intel-mcp .
docker run -p 3000:3000 -v $(pwd):/project -w /project test-intel-mcp

Luego configure cualquier cliente HTTP para que apunte a http://localhost:3000/mcp.


Formatos de cobertura compatibles

Formato

Extensión

Generador

lcov

.info

Jest, Vitest, nyc, Istanbul

istanbul

.json

Jest, nyc, Istanbul

cobertura

.xml

Jest, pytest-cov, JaCoCo

El formato se detecta automáticamente a partir de la extensión del archivo cuando se omite format.


Requisitos

  • Node.js >= 18

  • No se requiere autenticación ni acceso a la red

  • Todo el análisis de archivos se ejecuta localmente


Licencia

MIT

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
6Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for test impact analysis and code intelligence. Maps tests to code and git history to determine impacted tests, risk scores, and ownership for AI coding agents.
    2
    MIT
  • F
    license
    A
    quality
    B
    maintenance
    MCP server for Java branch coverage analysis using JaCoCo. Enables agent-style coverage feedback with per-test-class granularity and uncovered line identification.
    2
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that provides instant, token-efficient test coverage data for any programming language, allowing agents to query coverage summaries and track session progress.
    49
    41
    MIT

View all related MCP servers

Related MCP Connectors

  • Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.

  • MCP server for understanding Javascript internals from ECMAScript specification.

  • A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/barissozudogru/test-intel-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server