npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/dolt-mcp-vcs

v0.1.0

Published

Dolt/DoltHub version-control toolkit for Claude Code, via the dolthub/dolt-mcp server. A version-control-surface skill + expert agents over a Dolt backend — diagnosing DoltHub visibility, taming serve

Readme

dolt-mcp-vcs

A Dolt/DoltHub version-control toolkit for Claude Code, built on the dolthub/dolt-mcp server.

Formerly beads-dolt — same plugin, renamed to its Dolt-first identity. The rename is non-breaking: the GitHub repo URL redirects, the beads-dolt marketplace install slug still resolves (a deprecated catalog alias), and /beads-dolt is still an accepted trigger. Today the toolkit ships the beads (bd) task-tracker as use-case adapter #1; it is evolving into a dialect-invariant version-control core (branch / merge / diff / log / AS OF / data-PR) with thin maturity-gated flavor adapters (Dolt · Doltgres · DoltLite · DumboDB).

It packages, in one plugin:

  • A skill (/dolt-mcp-vcs, also /beads-dolt) — the beads workflow over bd's Dolt backend: it surfaces the common "my beads aren't visible in DoltHub" root cause (no remote configured), the bd dolt remote add + push fix, the JSONL throttle/export model, and the rapid-write-race safe pattern — and dispatches the agents below. A verb-class mutation gate keeps destructive ops (push / merge / reset --hard / branch-delete) recommend-only.
  • Expert agents — grounded in a live-fetched (never frozen) reference of bd's Dolt internals (references/dolt-internals.md):
    • dolt-sync-advisor — DoltHub remotes, bd dolt push/pull, backup vs push, federation, drift.
    • bead-epic-auditor — subtree/epic-closure audits (which epics have all children closed).
    • bead-dependency-mapper — dependency graphs, cycles, critical path (SQL via the Dolt MCP).
    • bead-recovery-specialist — rapid-write-race recovery, embedded↔server mode migration, dolt-server incidents.
    • beads-guru — general bd/Dolt expertise and the three-layer mirror discipline.
  • A wired Dolt MCP server (.mcp.json) — the official dolthub/dolt-mcp server (it exposes a ~40-tool version-control surface — fetch the exact list live, never freeze it) fronting your local dolt sql-server over the MySQL protocol. The plugin wires only the tools its agents actually use, least-privilege.

Built on

This plugin builds on, and credits, two open-source projects:

  • beads — the bd task tracker (the data this plugin operates on).
  • Dolt / DoltHub — the version-controlled SQL database that is bd's backend, and the cloud host that makes a bead graph shareable. The MCP server is dolthub/dolt-mcp.

Prerequisites

  • bd ≥ 1.0.4 with a Dolt-backed workspace.
  • The Dolt MCP server binary on PATH, pinned (the plugin's correctness rests on this binary, so it is version-pinned — never @latest). Install it one of these ways:
    go install github.com/dolthub/dolt-mcp/mcp/cmd/[email protected]   # native (Go)
    # or
    docker pull dolthub/dolt-mcp:v0.3.6                                      # container
    # or grab the v0.3.6 release binary from https://github.com/dolthub/dolt-mcp/releases
    Pinned module github.com/dolthub/dolt-mcp v0.3.6 verifies against the Go checksum database as h1:uwjh1zf0er51VBT6uY3tI7JLj5pYxWyk9uB6CYQOhfU=. A version bump is proposed by the dolt-watch routine and reviewed — it is never auto-trusted.

Configuration

The MCP connection is environment-overridable (defaults target the shared bd dolt --global server on :3308):

| Env var | Default | Notes | |---|---|---| | DOLT_HOST | 127.0.0.1 | bd's dolt server is loopback-bound. | | DOLT_PORT | 3308 | The shared-server port. For a per-project server, get the port from bd dolt show. | | DOLT_USER | root | bd's default. | | DOLT_DATABASE | beads | Your workspace's database name (see bd dolt show). | | DOLT_PASSWORD | (empty) | bd's server is unauthenticated by default. |

How it was evaluated

This plugin was run end-to-end through the Intent Eval Platform — deterministic gates → behavioral eval (real model) → kernel-validated Evidence Bundle → ship/no-ship decision. The full evidence and the ship/no-ship decision are recorded in DOGFOOD.md; the methodology write-up is the platform's case study. (The eval even surfaced — and we fixed — a bug in the platform's own evidence emitter.)

License

Apache-2.0. See LICENSE.