# io.github.donovan-jasper/sl-mcp (npm · sl-mcp)

MCP server for Sapling (sl) version control

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

## Components

- npm · `sl-mcp`: 63/100 (this document), [markdown](https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp.md), [page](https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp)

## Channel facts

- Registry: `npm`
- Package: `sl-mcp`
- Version: `0.1.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-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 142 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 997 tokens (~45/item across 22 items; 22 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add donovan-jasper-sl-mcp -- npx -y sl-mcp
```

### Codex

```bash
codex mcp add donovan-jasper-sl-mcp -- npx -y sl-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add donovan-jasper-sl-mcp --command npx --arg -y --arg sl-mcp
```

### Hermes

```yaml
mcp_servers:
  donovan-jasper-sl-mcp:
    command: "npx"
    args: ["-y", "sl-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "donovan-jasper-sl-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "sl-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 63, +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 62, +54)

- [security regression] Install scripts: pass → unverified
- [security regression] Provenance: fail → unverified
- [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).
- [functional regression] Maintenance: pass → unverified
- [functional regression] License: pass → unverified
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 8, −39)

- [security regression] Known CVEs: partial → unverified
- [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
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Dependency health: partial → unverified

### 2026-07-31 (score 47, −7)

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

### 2026-07-30 (score 54, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 72, +53)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: good
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100
- [functional] Licence: MIT

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

First indexed and scored.

## MCP tools (22)

### `sl_status` (~29 tokens)

Show working copy status (modified, added, removed files)

Input parameters:

- `cwd` (string): Repository path

### `sl_diff` (~64 tokens)

Show differences in working copy or between revisions

Input parameters:

- `change` (string): Show diff for a specific changeset
- `cwd` (string): Repository path
- `path` (string): Limit diff to a specific path
- `rev` (string): Revision to diff against

### `sl_log` (~52 tokens)

Show commit history

Input parameters:

- `cwd` (string): Repository path
- `limit` (number): Maximum number of commits to show (default 10)
- `revs` (string): Revset expression to filter commits

### `sl_show` (~34 tokens)

Show details of a specific commit

Input parameters:

- `cwd` (string): Repository path
- `rev` (string): Revision to show

### `sl_blame` (~49 tokens)

Show line-by-line annotation of a file

Input parameters:

- `cwd` (string): Repository path
- `path` (string, required): File path to annotate
- `rev` (string): Revision to blame at

### `sl_cat` (~47 tokens)

Print file contents at a given revision

Input parameters:

- `cwd` (string): Repository path
- `path` (string, required): File path to read
- `rev` (string): Revision to read from

### `sl_root` (~25 tokens)

Show the root directory of the repository

Input parameters:

- `cwd` (string): Repository path

### `sl_smartlog` (~27 tokens)

Show the smartlog graph of commits

Input parameters:

- `cwd` (string): Repository path

### `sl_goto` (~72 tokens)

Update working copy to a given revision. Caution: --clean discards uncommitted changes. Confirm with user before using --clean.

Input parameters:

- `clean` (boolean): Discard uncommitted changes (--clean)
- `cwd` (string): Repository path
- `rev` (string, required): Revision to go to

### `sl_commit` (~46 tokens)

Create a new commit with the given message.

Input parameters:

- `cwd` (string): Repository path
- `message` (string, required): Commit message
- `paths` (array): Specific paths to commit

### `sl_amend` (~44 tokens)

Amend the current commit.

Input parameters:

- `cwd` (string): Repository path
- `message` (string): New commit message
- `paths` (array): Specific paths to amend

### `sl_rebase` (~63 tokens)

Rebase a revision onto a new destination. Caution: moves commits to a new base. Confirm with user before running.

Input parameters:

- `cwd` (string): Repository path
- `dest` (string, required): Destination revision
- `rev` (string, required): Revision to rebase

### `sl_shelve` (~39 tokens)

Shelve uncommitted changes.

Input parameters:

- `cwd` (string): Repository path
- `name` (string): Name for the shelved changes

### `sl_unshelve` (~40 tokens)

Restore previously shelved changes.

Input parameters:

- `cwd` (string): Repository path
- `name` (string): Name of the shelved changes to restore

### `sl_add` (~33 tokens)

Start tracking the specified files.

Input parameters:

- `cwd` (string): Repository path
- `paths` (array, required): Files to add

### `sl_remove` (~51 tokens)

Remove files from the working copy and mark them for deletion. Caution: this is destructive and deletes files from disk.

Input parameters:

- `cwd` (string): Repository path
- `paths` (array, required): Files to remove

### `sl_forget` (~37 tokens)

Stop tracking the specified files without deleting them.

Input parameters:

- `cwd` (string): Repository path
- `paths` (array, required): Files to forget

### `sl_revert` (~65 tokens)

Revert specified files to their committed state. Caution: discards uncommitted changes to specified files. Confirm with user.

Input parameters:

- `cwd` (string): Repository path
- `paths` (array, required): Files to revert
- `rev` (string): Revision to revert to

### `sl_undo` (~23 tokens)

Undo the last operation.

Input parameters:

- `cwd` (string): Repository path

### `sl_pull` (~30 tokens)

Fetches commits from remote. Always confirm with user before running.

Input parameters:

- `cwd` (string): Repository path

### `sl_push` (~70 tokens)

Pushes commits to remote. Always confirm with user. Force push to main/master is blocked.

Input parameters:

- `cwd` (string): Repository path
- `force` (boolean): Force push (--force)
- `rev` (string): Revision to push (-r)
- `to` (string): Destination bookmark (--to)

### `sl_pr_submit` (~57 tokens)

Creates or updates a pull request. Always confirm with user before running.

Input parameters:

- `cwd` (string): Repository path
- `draft` (boolean): Create as draft PR (--draft)
- `rev` (string): Revision to submit (-r)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 62
- 2026-08-01: 8
- 2026-07-31: 47
- 2026-07-30: 54
- 2026-07-29: 72
- 2026-07-28: 72
- 2026-07-27: 19

## Links

- npm package: https://www.npmjs.com/package/sl-mcp
- Socket report: https://socket.dev/npm/package/sl-mcp
- Changelog RSS feed: https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/donovan-jasper-sl-mcp/sl-mcp
