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

@tidebase/mcp

v0.1.1

Published

MCP server for Tidebase — inspect agent runs, read checkpoints and state versions, resolve approval gates, and trigger recovery from any MCP-compatible AI assistant.

Readme

@tidebase/mcp

MCP server for Tidebase — lets AI assistants (Claude Code, Claude Desktop, Cursor, or any MCP client) inspect agent runs, read checkpoints and state versions, resolve approval gates, and trigger recovery.

Tidebase is an open-source checkpoint layer for AI agents: wrap your steps, and failed runs resume from the last safe point — in your own Postgres, without moving execution into a new runtime.

Install

Claude Code:

claude mcp add tidebase -e TIDEBASE_URL=http://localhost:7373 -- npx -y @tidebase/mcp

Claude Desktop / generic MCP client config:

{
  "mcpServers": {
    "tidebase": {
      "command": "npx",
      "args": ["-y", "@tidebase/mcp"],
      "env": { "TIDEBASE_URL": "http://localhost:7373" }
    }
  }
}

Tools

| Tool | What it does | |---|---| | tidebase_health | Verify the server is reachable | | tidebase_list_runs | List the 100 most recent runs with status | | tidebase_get_run | Full run detail: steps, resume contracts, state, gates, child runs, events, usage | | tidebase_create_run | Register a run (your app still invokes the workflow) | | tidebase_get_state_versions | Versioned state history; snapshots are labeled versions | | tidebase_resolve_gate | Approve/reject/cancel a pending gate (requires resolveToken; exactly-once) | | tidebase_trigger_recovery | Dispatch the run's recovery webhook to resume it |

What this enables

  • "Why did run run_abc stop?" → the assistant reads the run detail and explains which step failed and how it was classified (failed_retryable / manual_review / failed).
  • "Is it safe to rerun?" → the assistant reads the step resume contracts and answers from the recorded side effects and idempotency keys.
  • "Approve the pending gate on the report run" → resolved exactly once, with an audit actor.
  • "Resume everything that died overnight" → list failed runs, trigger recovery for each.

Configuration

| Env var | Default | Meaning | |---|---|---| | TIDEBASE_URL | http://localhost:7373 | Base URL of your Tidebase server |

Note: Tidebase's alpha has no API authentication; only point this at trusted local/self-hosted servers.

Develop

npm install
npm run build
TIDEBASE_URL=http://localhost:7373 node dist/index.js