npm @barissozudogru/test-intel-mcpstdioMITupdated 13d ago
Turn JavaScript and TypeScript coverage artifacts into practical test priorities. The server reads local coverage and source files, identifies gaps, scores function complexity, and suggests focused test cases without sending code to an external service.
O que dá para fazer com Test Intel?
test-intel-mcp
Turn JavaScript and TypeScript coverage artifacts into practical test priorities. The server reads local coverage and source files, identifies gaps, scores function complexity, and suggests focused test cases without sending code to an external service.
Tool page · npm · Listed in the official MCP Registry

Start in one minute
Add one local server entry to any stdio-compatible MCP client:
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
Then ask the client to inspect an existing coverage file:
Use test-intel to analyze coverage/lcov.info, identify the highest-impact gaps,
and suggest tests for the most complex uncovered function.
No account, API key, or hosted service is required. File access is restricted to the directory where the server starts.
Proof on this repository
Running the complexity tool against the real src/paths.ts file produces:
Function complexity analysis for: src/paths.ts
Total functions analyzed: 1
Priority | Function | Line | Cyclomatic | Branches | Loops
---------|-----------------|------|------------|----------|------
low | deriveTestPaths | 11 | 3 | 1 | 1
Summary: 0 critical, 0 high, 0 medium, 1 low priority
The same server reads lcov, Istanbul JSON, and Cobertura files to surface uncovered functions, lines, and branches.
A pinned p-limit 7.3.1 case study reproduces
coverage from the upstream project's 22 passing tests. test-intel-report
reduces its lcov artifact to two uncovered lines and one uncovered branch while
preserving the original coverage file for inspection.
If this saves you time, consider starring the repository. It helps other developers find it.
Tools
| Tool | What it answers |
|---|---|
analyze_test_coverage |
Which files, functions, lines, and branches remain uncovered? |
find_untested_functions |
Which source functions have no corresponding test file? |
get_function_complexity |
Which functions deserve testing attention first? |
suggest_test_cases |
Which happy path, boundary, error, async, and type cases should be reviewed? |
Supported coverage formats:
| Format | Common producers |
|---|---|
| lcov | Jest, Vitest, nyc, Istanbul |
| Istanbul JSON | Jest, nyc, Istanbul |
| Cobertura XML | Jest, pytest-cov, JaCoCo |
Heuristic source-to-test matching and complexity scores are prioritization signals. Native coverage data and human review remain the source of truth.
Coverage report command
The package also includes a non-MCP command for CI and terminal use:
npx -y -p @barissozudogru/test-intel-mcp test-intel-report coverage/lcov.info
An explicit format can be supplied when the filename is ambiguous:
test-intel-report coverage/result.xml cobertura
GitHub Action
Generate coverage with the project's own test runner, then pass the resulting artifact to the action:
name: Test priorities
on: [pull_request]
jobs:
test-intel:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Run tests with coverage
run: npm ci && npm test -- --coverage
- uses: barissozudogru/test-intel-mcp@v0.8.1
with:
coverage-path: coverage/lcov.info
The report is written to the workflow summary. The action analyzes an artifact that already exists and does not upload source or coverage data.
Client setup
Use the stdio configuration from the quickstart. Config file locations differ by client, but the server entry is the same:
{
"mcpServers": {
"test-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
Create .vscode/mcp.json:
{
"servers": {
"test-intel": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@barissozudogru/test-intel-mcp"]
}
}
}
Start the local endpoint:
npx @barissozudogru/test-intel-mcp --http
The MCP endpoint is http://localhost:3000/mcp and the health endpoint is http://localhost:3000/health. Set PORT to use another port.
docker build -t test-intel-mcp .
docker run -p 3000:3000 -v "$(pwd):/project" -w /project test-intel-mcp
Connect an HTTP client to http://localhost:3000/mcp.
Local development
npm install
npm test
npm run build
node dist/index.js
Requirements: Node.js 18 or newer.
See CONTRIBUTING.md for the development workflow.
Security and limits
- Analysis runs locally and does not require network access.
- Paths outside the server's starting directory are rejected.
- Function discovery, source-to-test matching, and complexity scoring are heuristic.
- A missing matching test filename does not prove a function is behaviorally untested.
License
Instalação
Adicione Test Intel ao seu cliente. Escolha o que você usa.
claude mcp add test-intel-mcp -- npx -y @barissozudogru/test-intel-mcpcodex mcp add test-intel-mcp -- npx -y @barissozudogru/test-intel-mcpamp mcp add test-intel-mcp -- npx -y @barissozudogru/test-intel-mcp{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"test-intel-mcp","command":"npx","args":["-y","@barissozudogru/test-intel-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"test-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"test-intel-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"test-intel-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@barissozudogru/test-intel-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @barissozudogru/test-intel-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
4 ferramentas
Test Intel expõe 4 ferramentas a um agente conectado.
- analyze_test_coverage
- Which files, functions, lines, and branches remain uncovered?
- find_untested_functions
- Which source functions have no corresponding test file?
- get_function_complexity
- Which functions deserve testing attention first?
- suggest_test_cases
- Which happy path, boundary, error, async, and type cases should be reviewed?
Pontuação
81 / 100
Excelente
- Documentação25/25
- Manutenção25/25
- Confiança13/20
- Capacidade6/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 6 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.8.1Mais recente | 26 de ago. de 2026 |
| 0.7.0 | 25 de ago. de 2026 |
| 0.6.1 | 20 de ago. de 2026 |