# io.github.bgorzelic/ghostlink (npm · @bgorzelic/ghostlink)

Sandboxed repo access for coding agents: search, read, patch, run, git -- confined to a repo root.

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

## Components

- npm · `@bgorzelic/ghostlink`: 69/100 (this document), [markdown](https://verifymcp.io/servers/bgorzelic-ghostlink/bgorzelic-ghostlink.md), [page](https://verifymcp.io/servers/bgorzelic-ghostlink/bgorzelic-ghostlink)

## Channel facts

- Registry: `npm`
- Package: `@bgorzelic/ghostlink`
- Version: `0.1.0`
- 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-04.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), 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 (96 of 100), 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 (ISC).
  - Actively maintained (last published 13 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 363 tokens (~60/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add bgorzelic-ghostlink -- npx -y @bgorzelic/ghostlink
```

### Codex

```bash
codex mcp add bgorzelic-ghostlink -- npx -y @bgorzelic/ghostlink
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add bgorzelic-ghostlink --command npx --arg -y --arg @bgorzelic/ghostlink
```

### Hermes

```yaml
mcp_servers:
  bgorzelic-ghostlink:
    command: "npx"
    args: ["-y", "@bgorzelic/ghostlink"]
```

### Other

```json
{
  "mcpServers": {
    "bgorzelic-ghostlink": {
      "command": "npx",
      "args": [
        "-y",
        "@bgorzelic/ghostlink"
      ]
    }
  }
}
```

## 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 69, +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 68, +32)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional] First check of Schema quality: unverified
- [functional] Licence: ISC

### 2026-08-01 (score 36, +10)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified

### 2026-07-31 (score 26, −20)

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

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

First indexed and scored.

## MCP tools (6)

### `repo.search` (~68 tokens)

Search repo files using ripgrep with output caps and deterministic ordering

Input parameters:

- `glob` (string): File glob filter (e.g. "*.ts")
- `max_results` (number): Max results to return (default 50, cap 200)
- `pattern` (string, required): Search pattern (regex)

### `repo.read_file` (~56 tokens)

Read a file from the repository with size and binary guards

Input parameters:

- `max_bytes` (number): Max bytes to read (default 1MB, cap 10MB)
- `path` (string, required): File path relative to repo root

### `repo.apply_patch` (~49 tokens)

Apply a unified diff patch with validation, sandbox enforcement, and rollback

Input parameters:

- `dry_run` (boolean): Validate only without writing (default false)
- `patch` (string, required): Unified diff patch string

### `repo.run` (~71 tokens)

Run a curated command (test, lint, typecheck, build, smoke) with allowlisted args

Input parameters:

- `args` (array): Optional allowlisted arguments
- `command` (string, required): Command to run
- `timeout_ms` (number): Timeout in ms (default 120000, max 300000)

### `git.status` (~45 tokens)

Get normalized git status with branch info, ahead/behind, and file entries

Input parameters:

- `max_entries` (number): Max file entries to return (default 100, cap 500)

### `git.diff` (~74 tokens)

Get diff output for staged or unstaged changes with optional path filtering

Input parameters:

- `max_bytes` (number): Max output bytes (default 500KB, cap 2MB)
- `paths` (array): Filter to specific file paths (sandbox validated)
- `staged` (boolean): Show staged (cached) changes (default false)

## Diagnostics

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

## Score history

- 2026-08-04: 69
- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 36
- 2026-07-31: 26
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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