Inspect Tidebase agent runs, resolve approval gates, and trigger recovery from your AI assistant.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Agent auth and credential brokering for AI agents, with checkpoints, queues, schedules, and approval gates. In your own Postgres.
Quick start Β· API Β· Storage contract Β· Scope

Tidebase gives your AI agents an identity and a vault. When an agent calls an API, the call goes through Tidebase, which injects the credential, so the agent and the model never see the key. You can scope it, audit it, and revoke it.
It also keeps the durable parts: checkpoints, live state, queues, schedules, and approval gates, all in your own Postgres. Your code still runs in your app, worker, or job process; Tidebase does not run it. So "this run died at step 7, is it safe to rerun?" has an answer, and "the agent has my GitHub token in plaintext" stops being true.
Docs: https://tidebase.dev Β· Community: Discord Β· For AI assistants: /llms.txt
Agent products usually grow the same operational plumbing:
Tidebase packages that layer around your existing code, plus a credential broker so agents act on real services without holding the keys. It does not run your code (your runtime stays yours), and it is not an LLM proxy or a hosted worker runtime.
Fastest path (no Node needed), prebuilt server image:
Then point any SDK at http://localhost:7373 (npm i @tidebase/sdk or pip install tidebase).
Dev setup (server + Studio from source):
Start Postgres:
Install dependencies:
Run the server and Studio:
Run the example workflow:
Force a failure after two completed checkpoints:
Copy the run id from Studio or the API, then resume:
The plan and fetch-sources steps are returned from checkpoints. Only write-report executes again.
Give an agent its own identity, vault a third-party secret, and let the agent call the API without ever holding the key. Tidebase makes the outbound call with the secret injected, and you can scope, audit, and revoke it.
Secrets are envelope-encrypted at rest (AES-256-GCM with a KMS-wrapped DEK). baseUrl pins the upstream and scopesAllowed caps any grant, so a leaked grant can't reach an arbitrary host. The proxy blocks private IPs and metadata hosts (SSRF defense), and GET /audit returns grant receipts with no secret material. For OAuth providers you can delegate custody to nango or openbao and Tidebase holds only an opaque connection reference.
Make every AI session in your project use Tidebase correctly:
Give your assistant direct access to runs, gates, and recovery via MCP:
Or install the Claude Code plugin (skill + MCP server in one):
Agent-readable docs live at tidebase.dev/llms.txt; every docs page also serves a raw .md twin.
Tidebase can now decide when your code runs, while still never executing it:
Push-mode dispatch is also available: configure a queue with an invokeUrl and Tidebase delivers signed run.invoke webhooks to your app instead of waiting for a claim. A queued job IS a run, queued is a lifecycle state, not a second table, so status never drifts.
See docs/production.md for the full lifecycle, replay contract, worker-death recovery model, and deploy discipline (versioned migrations via pnpm migrate, TIDEBASE_AUTO_MIGRATE=0 for expand/contract deploys).
The suite (84 TypeScript tests + 9 Python integration tests, run in CI on every push) uses the same Postgres in an isolated tidebase_test database. It is invariant-driven rather than coverage-driven: every test asserts a durability or safety guarantee through the public API or SDK, against real Postgres, including concurrency probes for the guarantees that only matter under contention.
What it proves:
manual_review, idempotency-keyed and read-only steps are safe_replaySee docs/testing.md for the full invariant map and conventions.
tide.run() fits work shaped like a function. For open-ended execution, a protocol gateway in front of an agent, a REPL, a run that spans many requests, attach to a run as a session instead:
The session holds the run lease with a background heartbeat (heartbeatMs, default 20s). If the process dies, the heartbeat stops, the lease expires, and the reconciler takes over, requeue or recovery webhook, exactly as if a workflow worker had crashed. A session that loses its lease (onLeaseLost) is a zombie: the server fences its writes. Pass runId to resume an existing session's run; completed steps replay from storage.
For a complete worked example, an MCP gateway that wraps any agent's MCP server in checkpointed tool calls and durable approval gates with one config-line change, see examples/mcp-gateway/.
Each step can declare the operational contract Tidebase should record for replay:
Tidebase records that contract with the step and shows it in Studio. Final step failures are classified as:
failed_retryable when SDK retries remain.manual_review when replay is manual, or when side effects exist without an idempotency key.failed for hard failures.This does not make external systems exactly-once. It makes the resume decision explicit instead of hiding it in logs and custom retry flags.
run.state.set() and run.state.patch() still update the current live run state. In v0.2 they also append a version to Tidebase's state history.
You can label the current state when it becomes a meaningful review or restore point:
Snapshots are a convenience API over labeled state versions for external targets such as reports, artifacts, workspaces, documents, or app state:
The model is intentionally small:
Tidebase stores and exposes the versions. Your app decides what restore or fork means for its own state targets.
Longer agent workflows often fan out to subagents and rejoin their results. Tidebase v0.2 models that as parent/child run edges plus a checkpointed join step.
Child run creation is idempotent by parent run and edge name. If the parent resumes, Tidebase returns the existing child runs instead of creating duplicates. The joined result is stored in a normal checkpointed step named join:<fanout-name>.
Channels deliver Tidebase events to external surfaces. The alpha supports webhook channels:
Gates create durable approval decisions that can be resolved by Studio, a product UI, Slack/Teams adapter, internal tool, or local review page:
Webhook gate payloads include a resolveUrl and resolveToken so a reviewer can resolve the gate. (Credentials are handled separately by the broker; see the agent auth section.)
When you cannot block on a human, an HTTP handler, a bot, a protocol gateway, use the non-blocking split that run.gate() is built on:
Gate begin is idempotent per name within a run: re-beginning a resolved gate returns its decision immediately, so retried callers converge on one answer.
Run a local approval channel:
In another terminal:
Open http://localhost:8788, approve the gate, and the workflow continues.
Tidebase can call back into your app when a run fails and has a recovery webhook configured. The SDK can handle that webhook and resume the matching workflow.
Tidebase records each recovery attempt with delivery status, HTTP status, response body, and errors. If TIDEBASE_WEBHOOK_SECRET is set on both the server and SDK, recovery payloads are signed with x-tidebase-signature.
The example includes a local webhook server:
Tidebase can record generic resource usage for a run without proxying model or provider calls:
Usage records are stored with the run, emitted as usage.recorded events, and summarized in Studio. The same ledger can track non-LLM resources:
Everything is backed by Postgres and designed for self-hosting from day one.
tide.work) and push-mode signed invocation webhookssdk-python/, tidebase.aio)As of v0.7.0 (June 2026). Earlier alphas listed queues, schedules, cancellation, approval gates, API auth, and credential brokering here. Those have all shipped (v0.5 through v0.7): durable queues with retries/backoff, cron, authoritative cancel, exactly-once gates, session runs, opt-in bearer auth, a reconciler that detects dead workers and re-dispatches, and in v0.7 the agent auth control plane and credential broker. What remains deliberately out of scope:
This is ready for local demos and early feedback, not production.
Important limits:
TIDEBASE_AUTO_MIGRATE=0 + pnpm migrate gives expand/contract deploy discipline.TIDEBASE_API_KEY on the server and the SDK (Studio: VITE_TIDEBASE_API_KEY). Without it the API is open, use only in trusted local/self-hosted environments.Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/tidebase)<a href="https://allmcps.com/mcp/tidebase"><img src="https://allmcps.com/api/badge/tidebase?style=directory" alt="Tidebase on AllMCPs" /></a>