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.testdino-inc/testdino-mcp

NPM · TESTDINO-MCP · SCANNED AUG 3

A MCP server for TestDino

Available components

+13 this week 48 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 Security70
  • No malware found by supply-chain analysis.Pass
  • CVE check failed: a known high-severity CVE affects @modelcontextprotocol/sdk 0.5.0, a direct dependency. A fixed version is available. View diagnostics → Fail
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (13 of 14), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency6
Schema Quality & AI Usability57
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 2310 tokens (~385/item across 6 items; 6 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
Capabilities20
  • Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28. See how to fix → Fail
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 · testdino-mcp

# add to Claude Code
claude mcp add testdino-inc-testdino-mcp -- npx -y testdino-mcp
# add to Codex CLI
codex mcp add testdino-inc-testdino-mcp -- npx -y testdino-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "testdino-inc-testdino-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "testdino-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add testdino-inc-testdino-mcp --command npx --arg -y --arg testdino-mcp
# ~/.hermes/config.yaml
mcp_servers:
  testdino-inc-testdino-mcp:
    command: "npx"
    args: ["-y", "testdino-mcp"]
// mcp.json
{
  "mcpServers": {
    "testdino-inc-testdino-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "testdino-mcp"
      ]
    }
  }
}
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 +17
    • Known CVEs: unverified → fail security
    • Malware scan: unverified → pass security
    • Dependency health: unverified → partial functional
  • 1 Aug 26 −13
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 28 Jul 26 +24
    • CVE-2025-66414 affects this package: high security
    • Known CVEs: unverified → fail security
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • License: unverified → fail functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Schema quality: unverified → excellent functional
  • 27 Jul 26 35

    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/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Vulnerabilities 1 finding
ID CVE Severity Vector Fix available
GHSA-w48q-cv73-mx4w CVE-2025-66414 high yes
Dependencies 13 packages

13 packages in the resolved dependency tree · 13 deprecated · 6 stale.

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

MCP tools — 6 exposed · ~2,310 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
get_run_details ~126

Get detailed information about test runs. Shows test statistics (passed, failed, skipped, flaky), all test suites and cases, git metadata, and error details. Supports batch operations (comma-separated IDs, max 20). Use this to analyze test execution health or debug specific failures.

NameTypeReqDescription
counternumberFilter by test run counter (sequential number).
testrun_idstringTest run ID(s). Single ID or comma-separated for batch (max 20). Example: 'test_run_123' or 'run1,run2,run3'.

No output schema declared.

No examples provided.

get_testcase_details ~298

Get detailed information about a specific test case. You can identify the test case in two ways: 1) By testcase_id (can be used alone), or 2) By testcase_name combined with testrun_id or counter (required because test cases can have the same name across different test runs). Shows error messages, stack traces, test steps, console logs, and optional artifacts (screenshots, videos, traces). Use this to debug why a test failed or understand how it executed. Example: 'Get test case details for "Verify user can logout and login" in testrun #43'.

NameTypeReqDescription
counternumberTest run counter number. Required when using testcase_name (if testrun_id is not provided) to specify which test run's test case you want. Example: 43.
testcase_idstringTest case ID. Can be used alone to get test case details. Example: 'test_case_123'.
testcase_namestringTest case name/title. Must be combined with either testrun_id or counter to identify which test run's test case you want. Example: 'Verify user can logout and login'.
testrun_idstringTest run ID. Required when using testcase_name to specify which test run's test case you want. Example: 'test_run_6901b2abc6b187e63f536a6b'.

No output schema declared.

No examples provided.

health ~55

Check if your TestDino connection is working. Verifies your API key and shows your project name. Use this first to make sure everything is set up correctly.

NameTypeReqDescription
namestringyesYour name (used in the greeting message).

No output schema declared.

No examples provided.

list_testcase ~1,130

List test cases with comprehensive filtering options. You can filter by test run (ID or counter), status, spec file, error category, browser, tags, runtime, artifacts, error messages, attempt number, branch, time interval, environment, author, or commit hash. When using test run filters (by_branch, by_commit, by_author, by_environment, by_time_interval, by_pages, page, limit, get_all), the tool first lists test runs matching those criteria, then returns test cases from those filtered test runs. Use this to find specific test cases across your test runs.

NameTypeReqDescription
by_artifactsbooleanFilter test cases that have artifacts available (screenshots, videos, traces). Set to true to list only test cases with artifacts. (ID/Counter is required while using this parameter)
by_attempt_numbernumberFilter by attempt number. Example: 1 for first attempt, 2 for second attempt. (ID/Counter is required while using this parameter)
by_authorstringFilter by commit author name (case-insensitive, partial match). Does not require testrun_id or counter. First lists test runs by the specified author, then returns test cases from those test runs.
by_branchstringFilter by git branch name. Does not require testrun_id or counter. First lists test runs on the specified branch, then returns test cases from those test runs. Example: 'main', 'develop'.
by_browser_namestringFilter by browser name. Example: 'chromium', 'firefox', 'webkit'. (ID/Counter is required while using this parameter)
by_commitstringFilter by git commit hash (full or partial). Does not require testrun_id or counter. First lists test runs with the specified commit, then returns test cases from those test runs.
by_environmentstringFilter by environment. Does not require testrun_id or counter. First lists test runs in the specified environment, then returns test cases from those test runs. Example: 'production', 'staging', 'dev…
by_error_categorystringFilter by error category. Example: 'timeout_issues', 'element_not_found', 'assertion_failures', 'network_issues'. (ID/Counter is required while using this parameter)
by_error_messagestringFilter by error message (partial match, case-insensitive). Example: 'Test timeout of 60000ms exceeded'. (ID/Counter is required while using this parameter)
by_pagesnumberList test cases by page number. Does not require testrun_id or counter. Returns test cases from all test runs on the specified page.
by_spec_file_namestringFilter by spec file name. Example: 'login.spec.js' or 'user-profile.spec.ts'. (ID/Counter is required while using this parameter)
by_statusstringFilter by status: 'passed', 'failed', 'skipped', or 'flaky'.(ID/Counter is required while using this parameter)
by_tagstringFilter by tag(s). Single tag or comma-separated. Example: 'smoke' or 'smoke,regression'. (ID/Counter is required while using this parameter)
by_testrun_idstringTest run ID(s). Single ID or comma-separated for multiple runs (max 20). Example: 'test_run_123' or 'run1,run2,run3'. Not required when using test run filters (by_branch, by_commit, by_author, by_env…
by_time_intervalstringFilter by time interval. Does not require testrun_id or counter. First lists test runs in the specified time period, then returns test cases from those test runs. Supports: '1d' (last day), '3d' (las…
by_total_runtimestringFilter by total runtime. Use '<60' for less than 60 seconds, '>100' for more than 100 seconds. Example: '<60', '>100', '<30'. (ID/Counter is required while using this parameter)
counternumberTest run counter number. Alternative to by_testrun_id. Not required when using test run filters (by_branch, by_commit, by_author, by_environment, by_time_interval, by_pages, page, limit, get_all). Ex…
get_allbooleanGet all results up to 1000 (default: false). Does not require testrun_id or counter. When used alone, first lists all test runs, then returns test cases from those test runs.
limitnumberNumber of results per page (default: 1000, max: 1000). Does not require testrun_id or counter. When used alone, first lists test runs, then returns test cases from those test runs.
pagenumberPage number for pagination (default: 1). Does not require testrun_id or counter. When used alone, first lists test runs on the specified page, then returns test cases from those test runs.

No output schema declared.

No examples provided.

list_testruns ~391

Browse and filter your test runs to find specific test executions. Filter by git branch (e.g., 'develop', 'main'), time interval ('1d', '3d', 'weekly', 'monthly', or custom date ranges), commit author, or environment (e.g., 'production', 'staging', 'development'). Supports efficient pagination using page/limit or offset/limit, or use get_all=true to fetch all results (up to 1000). Returns test run summaries with statistics (total, passed, failed, skipped, flaky counts), duration, status, branch, author, and PR information when available. Perfect for answering questions like 'What tests ran on the develop branch?' or 'Show me all test runs from last week.' The API key should be configured in mcp.json as TESTDINO_API_KEY environment variable.

NameTypeReqDescription
by_authorstringFilter by commit author name (case-insensitive, partial match).
by_branchstringFilter by git branch name (e.g., 'main', 'develop', 'feature/login').
by_commitstringFilter by git commit hash (full or partial).
by_environmentstringFilter by environment. Example: 'production', 'staging', 'development'.
by_time_intervalstringFilter by time: '1d' (last day), '3d' (last 3 days), 'weekly' (last 7 days), 'monthly' (last 30 days), or '2024-01-01,2024-01-31' (date range).
get_allbooleanGet all results up to 1000 (default: false).
limitnumberNumber of results per page (default: 20, max: 1000).
pagenumberPage number (default: 1).

No output schema declared.

No examples provided.

upload_latest_local_test_runs ~310

Upload your local Playwright test results to TestDino. After running tests locally, upload the report to track and analyze results. Automatically detects git info (branch, commit, author). Use absolute paths for best results.

NameTypeReqDescription
htmlReportstringSpecific HTML report path (overrides reportDir).
jsonReportstringSpecific JSON report file path (overrides reportDir).
reportDirstringPath to Playwright report directory. Use absolute path (e.g., '/Users/jon/project/playwright-report' or 'C:\Users\jon\project\playwright-report'). Default: './playwright-report'.
traceDirstringSpecific trace directory path (overrides reportDir).
uploadFilesbooleanUpload file attachments (.md, .pdf, .txt, .log). Default: false.
uploadFullJsonbooleanUpload complete JSON bundle with all artifacts (alternative to uploadHtml). Default: false.
uploadHtmlbooleanUpload HTML reports with all data (JSON, images, videos). Recommended. Default: true.
uploadImagesbooleanUpload screenshot images. Default: false (included in uploadHtml).
uploadTracesbooleanUpload Playwright trace files for debugging. Default: false.
uploadVideosbooleanUpload test execution videos. Default: false (included in uploadHtml).
verbosebooleanShow detailed logging. Default: false.

No output schema declared.

No examples provided.