# isitdone (npm · @aivolution/isitdone)

Make a coding agent prove it: run the repo's real tests, typecheck and lint before it says done.

- Trust score: 81/100 (high trust)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- npm · `@aivolution/isitdone`: 81/100 (this document), [markdown](https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone.md), [page](https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone)

## Channel facts

- Registry: `npm`
- Package: `@aivolution/isitdone`
- Version: `0.5.2`
- 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-09-20.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to raimondasl/isitdone).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 73/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 594 tokens (~198/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 3 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 4 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the isitdone MCP server?

isitdone runs locally as an npm package, launched with npx -y @aivolution/isitdone. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add raimondasl-isitdone -- npx -y @aivolution/isitdone
```

### Cursor

```json
{
  "mcpServers": {
    "raimondasl-isitdone": {
      "command": "npx",
      "args": [
        "-y",
        "@aivolution/isitdone"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "raimondasl-isitdone": {
      "command": "npx",
      "args": [
        "-y",
        "@aivolution/isitdone"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add raimondasl-isitdone -- npx -y @aivolution/isitdone
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "raimondasl-isitdone": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@aivolution/isitdone"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add raimondasl-isitdone --command npx --arg -y --arg @aivolution/isitdone
```

### Hermes

```yaml
mcp_servers:
  raimondasl-isitdone:
    command: "npx"
    args: ["-y", "@aivolution/isitdone"]
```

### Netclaw

```json
{
  "McpServers": {
    "raimondasl-isitdone": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@aivolution/isitdone"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add raimondasl-isitdone -t stdio -c npx -a -y @aivolution/isitdone
```

### Other

```json
{
  "mcpServers": {
    "raimondasl-isitdone": {
      "command": "npx",
      "args": [
        "-y",
        "@aivolution/isitdone"
      ]
    }
  }
}
```

## 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-09-20 (score 81)

First indexed and scored.

## MCP tools (3)

### `isitdone_verify` (~266 tokens)

isitdone: verify before claiming done

Run this repository's real test, typecheck and lint commands on the current working tree, scan the diff for weakened tests, and write a receipt bound to that exact tree. Call it before you tell the user that work is complete, fixed, passing or ready for review, and paste the result. NOT DONE (done: false) is an answer, not a tool failure: fix the code and call again. Never skip, delete or weaken tests to make it pass. A PASS receipt for an unchanged tree is reused, so calling again is cheap.

Input parameters:

- `base` (string): Git ref to diff against for the test-integrity scan. Default: HEAD, i.e. the uncommitted changes.
- `claim` (string): The completion claim you are about to make, quoted; it is recorded in the receipt.
- `cwd` (string): Absolute path of the repository, or of a directory inside it. Default: the client's first workspace root, else the directory the server was started in.
- `profile` (string): full (default) runs every check. lite runs only typecheck and lint and never reports done: true.
- `strict` (boolean): Also answer NOT DONE when the change weakened tests (high or critical findings), even if the checks pass.

Output parameters:

- `cached` (boolean): A PASS receipt already proved this exact tree; nothing was re-run.
- `checks` (array)
- `claim` (string|null)
- `done` (boolean): True only when every full check passed on exactly this working tree and no test-integrity finding blocks.
- `durationMs` (number)
- `git` (object)
- `integrity` (object|null): Scan of the change set for weakened tests (deleted tests, new skips, dropped or downgraded assertions, neutered configuration).
- `noChecks` (boolean): No checks were detected, so nothing was verified.
- `notes` (array)
- `ok` (boolean): Every check that ran passed. With profile lite this can be true while done is false.
- `profile` (string)
- `receipt` (object|null)
- `skipped` (array)
- `stacks` (array)
- `state` (string): The receipt this run wrote or reused.
- `version` (string)
- `warnings` (array)

### `isitdone_receipt` (~89 tokens)

isitdone: receipt for the current tree

Read-only, runs nothing. Whether the current working tree already has a verification receipt: PASS (the checks passed on exactly this tree), FAIL, STALE (files or the check configuration changed since) or NONE.

Input parameters:

- `cwd` (string): Absolute path of the repository, or of a directory inside it. Default: the client's first workspace root, else the directory the server was started in.

Output parameters:

- `done` (boolean): True only for a PASS receipt of a full run on exactly this tree.
- `reason` (string)
- `receipt` (object|null)
- `root` (string)
- `state` (string)
- `tree` (string): Hash of the current working tree.

### `isitdone_detect` (~80 tokens)

isitdone: which checks would run

Read-only, runs nothing. The check commands isitdone_verify would run in this repository: id, command, lite or full, timeout, and where each one was detected.

Input parameters:

- `cwd` (string): Absolute path of the repository, or of a directory inside it. Default: the client's first workspace root, else the directory the server was started in.

Output parameters:

- `checks` (array)
- `configSource` (string|null)
- `notes` (array)
- `root` (string)
- `stacks` (array)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone#diagnostics

## Score history

- 2026-09-20: 81

## Common questions

### What is the isitdone MCP server?

isitdone is an MCP server listed in the public MCP registry as io.github.raimondasl/isitdone. Make a coding agent prove it: run the repo's real tests, typecheck and lint before it says done. This page covers its npm package (@aivolution/isitdone).

### Is the isitdone MCP server safe to use?

isitdone scores 81 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. Its build provenance is signed and verified. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the isitdone MCP server expose?

isitdone exposes 3 tools: isitdone_verify, isitdone_receipt, isitdone_detect. Their descriptions and schemas cost roughly 435 tokens of context every time the server is loaded.

### Is the isitdone MCP server still maintained?

isitdone is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the isitdone MCP server under?

isitdone declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/@aivolution/isitdone
- Socket report: https://socket.dev/npm/package/@aivolution/isitdone
- Repository: https://github.com/raimondasl/isitdone
- Changelog RSS feed: https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone.xml
- Changelog JSON feed: https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone.json
- HTML version of this page: https://verifymcp.io/servers/raimondasl-isitdone/aivolution-isitdone
