# io.github.inSideos-designs/cowork-qa (npm · cowork-qa-mcp)

Goal-driven Playwright browser sessions for LLMs, with full action traces and aria-snapshots.

- Trust score: 64/100 (medium)
- Change this week: +20
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `cowork-qa-mcp`: 64/100 (this document), [markdown](https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp.md), [page](https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp)

## Channel facts

- Registry: `npm`
- Package: `cowork-qa-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 81/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.
  - Runs a script at install time (postinstall) that we could not recognise. It may be perfectly ordinary, but we do not read the published tarball, so we cannot say what it does.
  - Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 88 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 239 tokens (~47/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 81/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 44% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add insideos-designs-cowork-qa -- npx -y cowork-qa-mcp
```

### Codex

```bash
codex mcp add insideos-designs-cowork-qa -- npx -y cowork-qa-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "insideos-designs-cowork-qa": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "cowork-qa-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add insideos-designs-cowork-qa --command npx --arg -y --arg cowork-qa-mcp
```

### Hermes

```yaml
mcp_servers:
  insideos-designs-cowork-qa:
    command: "npx"
    args: ["-y", "cowork-qa-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "insideos-designs-cowork-qa": {
      "command": "npx",
      "args": [
        "-y",
        "cowork-qa-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 64, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 60, +41)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → partial
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [security] The scripts that run when this package is installed changed: postinstall
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 19, −15)

- [security regression] Malware scan: pass → unverified

### 2026-07-31 (score 34, −10)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 44, +19)

- [functional regression] Dependency health: partial → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 25, −19)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 44)

First indexed and scored.

## MCP tools (5)

### `session_start` (~47 tokens)

Open a fresh browser tab and start recording a goal-driven session.

Input parameters:

- `goal` (string, required): Plain-English goal the agent will try to accomplish.
- `url` (string): Optional starting URL.

### `session_act` (~76 tokens)

Perform a browser action in a session: goto | click | fill | press | eval.

Input parameters:

- `action` (string, required)
- `session_id` (string, required)
- `target` (string): Selector for click/fill, URL for goto, key for press, JS expression for eval.
- `value` (string): Value for fill.

### `session_observe` (~31 tokens)

Return the current URL and aria-snapshot of the session's page.

Input parameters:

- `session_id` (string, required)

### `session_end` (~31 tokens)

Close the session, persist the trace to disk, and return the path.

Input parameters:

- `session_id` (string, required)

### `qa_get_trace` (~54 tokens)

Return the full recorded trace (goal, every step, final URL, final aria-snapshot) so the calling LLM can judge whether the goal was achieved. Call session_end first.

Input parameters:

- `session_id` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 60
- 2026-08-01: 19
- 2026-07-31: 34
- 2026-07-30: 44
- 2026-07-28: 25
- 2026-07-27: 44

## Links

- npm package: https://www.npmjs.com/package/cowork-qa-mcp
- Socket report: https://socket.dev/npm/package/cowork-qa-mcp
- Repository: https://github.com/inSideos-designs/cowork-qa-mcp
- Changelog RSS feed: https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/insideos-designs-cowork-qa/cowork-qa-mcp
