npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

runnerqa-mcp

v0.1.2

Published

Local MCP server for RunnerQA — check connection status, create mobile test cases, generate Maestro-compatible YAML, read run reports, and propose AI fixes through the RunnerQA Agent API. Test execution stays local via the RunnerQA CLI.

Downloads

449

Readme

runnerqa-mcp

Local stdio MCP server for RunnerQA — lets Claude Code, Cursor, or any MCP client create mobile test cases, generate Maestro-compatible tests, read run evidence, and propose fixes (applied only with your approval) through the RunnerQA Agent API.

Prefer the hosted MCP. If your client supports remote MCP servers with OAuth, connect with one URL and no token: claude mcp add --transport http runnerqa https://www.runnerqa.dev/api/mcp/mcp. This local stdio package is the token-based fallback for clients without remote-server support.

This local stdio fallback package is version 0.1.2.

Test execution stays local: this server never touches your simulator or device. The RunnerQA CLI (mqa pull, mqa run <test_case_id>) runs tests on your machine and reports results back to the dashboard.

Setup

  1. Create an agent token on the RunnerQA dashboard → AI Integrations (rqa_agent_..., shown once).
  2. Add the server to your MCP client config:
{
  "mcpServers": {
    "runnerqa": {
      "command": "npx",
      "args": ["-y", "runnerqa-mcp"],
      "env": {
        "RUNNERQA_AGENT_TOKEN": "rqa_agent_xxx",
        "RUNNERQA_BASE_URL": "https://www.runnerqa.dev"
      }
    }
  }
}

RUNNERQA_BASE_URL is optional and defaults to https://www.runnerqa.dev.

Tools

Call runnerqa_connection_status first to confirm the Agent API token is accepted, then use the others.

| Tool | What it does | |---|---| | runnerqa_connection_status | Confirm the token is accepted; report base URL + project count (count only) | | runnerqa_list_projects | List projects (platform, framework, app id) | | runnerqa_list_test_cases | List test cases (project_id optional) | | runnerqa_create_test_case | Create a test case from a plain-English flow | | runnerqa_generate_yaml | Generate validated Maestro-compatible YAML (~10-20s) | | runnerqa_get_report_summary | QA report: totals, failing tests, recommended next steps | | runnerqa_get_run_detail | One run's status, logs, and AI failure analysis | | runnerqa_search_failures | Investigate recurring failures grouped by fingerprint over a bounded recent-run window (not all-time): first/last seen, affected tests, last pass before onset, release/commit/environment context (project_id required, q/limit optional) | | runnerqa_analyze_failure | AI-explain a failed run; returns a proposed YAML fix (not applied) | | runnerqa_apply_fix | Apply a YAML fix — only after the user explicitly approves |

Security

  • The MCP token is an Agent API token, not a runner token. It can create, generate, and read — it cannot run tests on your devices.
  • Tokens are shown once, stored only as hashes server-side, and revocable instantly from the dashboard.
  • runnerqa_apply_fix changes a test case's YAML; the server validates it against the Maestro command allowlist and keeps every version in history. MCP clients should always ask for user approval first.

License

MIT