# io.github.Dave-London/go (npm · @paretools/go)

Structured Go tool output (build, test, vet) as typed JSON diagnostics.

- Trust score: 80/100 (high trust)
- Change this week: +56
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@paretools/go`: 80/100 (this document), [markdown](https://verifymcp.io/servers/dave-london-go/paretools-go.md), [page](https://verifymcp.io/servers/dave-london-go/paretools-go)

## Channel facts

- Registry: `npm`
- Package: `@paretools/go`
- Version: `0.7.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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Dave-London/Pare).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 4 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1043 tokens (~104/item across 10 items; 10 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**: 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add dave-london-go -- npx -y @paretools/go
```

### Codex

```bash
codex mcp add dave-london-go -- npx -y @paretools/go
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dave-london-go": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@paretools/go"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dave-london-go --command npx --arg -y --arg @paretools/go
```

### Hermes

```yaml
mcp_servers:
  dave-london-go:
    command: "npx"
    args: ["-y", "@paretools/go"]
```

### Other

```json
{
  "mcpServers": {
    "dave-london-go": {
      "command": "npx",
      "args": [
        "-y",
        "@paretools/go"
      ]
    }
  }
}
```

## 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 80, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 79, +58)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Provenance: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: Dave-London/Pare
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 21, −3)

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

### 2026-07-30 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100

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

First indexed and scored.

## MCP tools (10)

### `build` (~89 tokens)

Go Build

Runs go build and returns structured error list (file, line, column, message). Use instead of running `go build` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `packages` (array): Packages to build (default: ./...)
- `path` (string): Project root path (default: cwd)

Output parameters:

- `errors` (array)
- `success` (boolean)
- `total` (number)

### `test` (~100 tokens)

Go Test

Runs go test and returns structured test results (name, status, package, elapsed). Use instead of running `go test` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `packages` (array): Packages to test (default: ./...)
- `path` (string): Project root path (default: cwd)
- `run` (string): Test name filter regex

Output parameters:

- `failed` (number)
- `passed` (number)
- `skipped` (number)
- `success` (boolean)
- `tests` (array)
- `total` (number)

### `vet` (~82 tokens)

Go Vet

Runs go vet and returns structured static analysis diagnostics. Use instead of running `go vet` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `packages` (array): Packages to vet (default: ./...)
- `path` (string): Project root path (default: cwd)

Output parameters:

- `diagnostics` (array)
- `total` (number)

### `run` (~128 tokens)

Go Run

Runs a Go program and returns structured output (stdout, stderr, exit code). Use instead of running `go run` in the terminal.

Input parameters:

- `args` (array): Arguments to pass to the program
- `buildArgs` (array): Build flags to pass to go run (e.g., -race, -tags)
- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `file` (string): Go file or package to run (default: .)
- `path` (string): Project root path (default: cwd)

Output parameters:

- `exitCode` (number)
- `stderr` (string)
- `stdout` (string)
- `success` (boolean)

### `mod-tidy` (~74 tokens)

Go Mod Tidy

Runs go mod tidy to add missing and remove unused module dependencies. Use instead of running `go mod tidy` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `path` (string): Project root path (default: cwd)

Output parameters:

- `success` (boolean)
- `summary` (string)

### `fmt` (~126 tokens)

Go Fmt

Checks or fixes Go source formatting using gofmt. In check mode (-l), lists unformatted files. In fix mode (-w), rewrites files. Use instead of running `gofmt` in the terminal.

Input parameters:

- `check` (boolean): Check mode: list unformatted files without fixing (default: false)
- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `path` (string): Project root path (default: cwd)
- `patterns` (array): File patterns to format (default: ['.'])

Output parameters:

- `files` (array)
- `filesChanged` (number)
- `success` (boolean)

### `generate` (~113 tokens)

Go Generate

Runs go generate directives in Go source files. Use instead of running `go generate` in the terminal. WARNING: `go generate` executes arbitrary commands embedded in //go:generate directives in source files. Only use this tool on trusted code that you have reviewed.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `path` (string): Project root path (default: cwd)
- `patterns` (array): Packages to generate (default: ./...)

Output parameters:

- `output` (string)
- `success` (boolean)

### `env` (~96 tokens)

Go Env

Returns Go environment variables as structured JSON. Optionally request specific variables. Use instead of running `go env` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `path` (string): Project root path (default: cwd)
- `vars` (array): Specific environment variables to query (e.g., ['GOROOT', 'GOPATH'])

Output parameters:

- `goarch` (string)
- `goos` (string)
- `gopath` (string)
- `goroot` (string)
- `goversion` (string)
- `vars` (object)

### `list` (~93 tokens)

Go List

Lists Go packages and returns structured package information (dir, importPath, name, goFiles). Use instead of running `go list` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `packages` (array): Package patterns to list (default: ['./...'])
- `path` (string): Project root path (default: cwd)

Output parameters:

- `packages` (array)
- `total` (number)

### `get` (~88 tokens)

Go Get

Downloads and installs Go packages and their dependencies. Use instead of running `go get` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `packages` (array, required): Packages to install (e.g., ['github.com/pkg/errors@latest'])
- `path` (string): Project root path (default: cwd)

Output parameters:

- `output` (string)
- `success` (boolean)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dave-london-go/paretools-go#diagnostics

## Score history

- 2026-08-03: 80
- 2026-08-02: 79
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@paretools/go
- Socket report: https://socket.dev/npm/package/@paretools/go
- Repository: https://github.com/Dave-London/Pare
- Changelog RSS feed: https://verifymcp.io/servers/dave-london-go/paretools-go/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dave-london-go/paretools-go/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dave-london-go/paretools-go
