JSPM

  • Created
  • Published
  • Downloads 278
  • Score
    100M100P100Q78281F
  • License MIT

MCP server for test runners with structured, token-efficient output

Package Exports

  • @paretools/test

Readme

@paretools/test

Pare MCP server for test runners. Auto-detects pytest, jest, or vitest and returns structured results.

Tools

Tool Description
run Run tests, returns pass/fail counts and failure details
coverage Run tests with coverage, returns per-file summary

Setup

{
  "mcpServers": {
    "pare-test": {
      "command": "npx",
      "args": ["@paretools/test"]
    }
  }
}

Example

run output:

{
  "framework": "vitest",
  "passed": 46,
  "failed": 1,
  "skipped": 0,
  "total": 47,
  "failures": [
    {
      "name": "parseOutput > handles empty input",
      "file": "src/__tests__/parsers.test.ts",
      "message": "expected true to be false"
    }
  ]
}

License

MIT