🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@tidebase/mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tidebase/mcp

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

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
22
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

@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

ToolWhat it does
tidebase_healthVerify the server is reachable
tidebase_list_runsList the 100 most recent runs with status
tidebase_get_runFull run detail: steps, resume contracts, state, gates, child runs, events, usage
tidebase_create_runRegister a run (your app still invokes the workflow)
tidebase_get_state_versionsVersioned state history; snapshots are labeled versions
tidebase_resolve_gateApprove/reject/cancel a pending gate (requires resolveToken; exactly-once)
tidebase_trigger_recoveryDispatch 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 varDefaultMeaning
TIDEBASE_URLhttp://localhost:7373Base 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

Keywords

mcp

FAQs

Package last updated on 12 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts