Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.rog0x/testing

NPM · @ROG0X/MCP-TESTING-TOOLS · SCANNED AUG 3

Test generation, mocks, coverage analysis for AI agents

+22 this week 68 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability74
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 664 tokens (~132/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @rog0x/mcp-testing-tools

# add to Claude Code
claude mcp add rog0x-testing -- npx -y @rog0x/mcp-testing-tools
# add to Codex CLI
codex mcp add rog0x-testing -- npx -y @rog0x/mcp-testing-tools
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rog0x-testing": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rog0x/mcp-testing-tools"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add rog0x-testing --command npx --arg -y --arg @rog0x/mcp-testing-tools
# ~/.hermes/config.yaml
mcp_servers:
  rog0x-testing:
    command: "npx"
    args: ["-y", "@rog0x/mcp-testing-tools"]
// mcp.json
{
  "mcpServers": {
    "rog0x-testing": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-testing-tools"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +60
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 1 Aug 26 −15
    • Tool coverage: 100 → unverified functional
  • 31 Jul 26 +14
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −40
    • Malware scan: pass → unverified security
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@rog0x/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 5 exposed · ~664 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
analyze_test_coverage ~96

Parse source code and test code to identify untested functions. Suggests which functions need tests most based on complexity, export status, and parameter count.

NameTypeReqDescription
source_codestringyesThe source code to analyze for functions
source_file_namestringFilename for the source (used in output, default: "source.ts")
test_codestringyesThe test code to check which functions are already tested

No output schema declared.

No examples provided.

generate_api_mock ~181

Generate mock API responses from a schema. Creates realistic JSON responses for REST endpoints based on field names and types.

NameTypeReqDescription
countnumberNumber of records to generate (default: 1, max: 100)
endpointstringyesAPI endpoint path, e.g. "/api/v1/users"
fieldsarrayyesArray of field schemas. Each field has: name (string), type (string|number|boolean|date|array|object), optional items (for arrays), optional fields (for nested objects), optional nullable, optional e…
methodstringHTTP method (default: GET)
status_codenumberHTTP status code for the response (default: 200)
wrap_in_envelopebooleanWrap response in { success, data, meta } envelope (default: true)

No output schema declared.

No examples provided.

generate_assertions ~132

Given expected and actual values (as JSON strings), generate detailed assertion code with descriptive messages. Supports deep object comparison, array comparison, and type checking.

NameTypeReqDescription
actualstringyesThe actual value as a JSON string (or plain string for primitives)
deepbooleanUse deep equality for objects/arrays (default: true)
expectedstringyesThe expected value as a JSON string (or plain string for primitives)
frameworkstringAssertion framework to generate for (default: jest)
labelstringDescriptive label for the comparison (default: "value comparison")

No output schema declared.

No examples provided.

generate_mock_data ~150

Generate realistic mock data: names, emails, addresses, dates, UUIDs, phone numbers, company names, credit cards (fake), IP addresses. Configurable count and locale.

NameTypeReqDescription
countnumberNumber of items to generate (default: 10, max: 1000)
localestringLocale for generated data: "en" or "es" (default: "en")
typestringyesType of data to generate: name, email, address, date, uuid, phone, company, credit_card, ip
typesarrayGenerate mixed records with multiple field types (alternative to single type). Each record will have all specified fields.

No output schema declared.

No examples provided.

generate_tests ~105

Generate test cases from a function signature. Produces happy path, edge cases, error cases, and boundary value tests as Jest/Vitest test code.

NameTypeReqDescription
frameworkstringTest framework to generate for (default: vitest)
module_pathstringImport path for the module under test (default: "./module")
signaturestringyesThe function signature to generate tests for, e.g. "export async function fetchUser(id: number): Promise<User>"

No output schema declared.

No examples provided.