Persistent session controller for Claude Code. 16 MCP tools. Remote control from any device.
pip install agentibridge
Step away from your desk and your productivity drops to zero. AgentiBridge fixes that.
| Capability | Without AgentiBridge | With AgentiBridge |
|---|---|---|
| Session persistence | Raw JSONL files in ~/.claude/ | Indexed, searchable, resumable |
| Remote access | None — workstation only | Any MCP client, any device |
| Cross-session search | Manual grep through files | Natural language semantic search |
| Background tasks | Must keep terminal open | Fire-and-forget dispatch |
| Multi-client support | CLI only | Claude, ChatGPT, Grok, any MCP client |
| Productivity away from desk | 0% | Full agent control from anywhere |
Work from any device, any MCP client. Dispatch tasks from claude.ai on your phone, monitor from ChatGPT on a tablet.
Sessions indexed and searchable automatically. Background collector watches your transcripts — no manual exports.
Natural language queries across all sessions. Powered by pgvector embeddings with HNSW indexing for sub-second results.
Resume or dispatch tasks in the background. Fire-and-forget — get a job ID back, check status from any device.
$ pip install agentibridge
$ agentibridge run
Zero dependencies. Filesystem-only storage. Local MCP access via stdio.
$ docker run -d --name agentibridge \
-v ~/.claude:/data/claude \
-p 8100:8100 \
ghcr.io/the-cloud-clock-work/agentibridge:latest
Containerized with HTTP/SSE transport on port 8100.
$ git clone https://github.com/The-Cloud-Clock-Work/agentibridge.git
$ cd agentibridge
$ docker compose up --build -d
Includes Redis caching + Postgres/pgvector for semantic search.
$ docker compose --profile tunnel-named up -d
Everything in Compose + Cloudflare Tunnel, OAuth 2.1, zero inbound ports.
One command. Pick pip, Docker, or Compose.
Add the MCP server URL to your client config.
Search, dispatch, and monitor from anywhere.
Orchestrate everything. Fire-and-forget background tasks that never stop. AgentiCore extends AgentiBridge with full background task orchestration, OTEL observability, and fleet management.
Explore AgentiCore$ agenticore dispatch \
--task "Refactor auth module to use JWT" \
--repo ./my-project \
--background
✓ Job dispatched: job_a8f3c2e1
✓ Status: running
✓ Monitor: agenticore status job_a8f3c2e1
Every tool you need to search, manage, and orchestrate Claude Code sessions.
list_sessionsBrowse all indexed sessionsget_sessionRetrieve full session transcriptget_session_segmentFetch specific conversation segmentget_session_actionsList tool calls and actions takensearch_sessionsKeyword search across sessionscollect_nowTrigger immediate transcript indexingsearch_semanticNatural language search with embeddingsgenerate_summaryAI-generated session summariesrestore_sessionResume a previous sessiondispatch_taskFire-and-forget background taskget_dispatch_jobCheck job status and resultslist_memory_filesBrowse CLAUDE.md and memory filesget_memory_fileRead specific memory file contentslist_plansView generated implementation plansget_planRead full plan detailssearch_historySearch across session historyHistory is the data layer. The product is remote fleet control — dispatch tasks from your phone, search sessions from any MCP client, monitor jobs from claude.ai. You go from 0% productivity away from your desk to full agent control from anywhere.
IDE history is excellent for local replay within that IDE. AgentiBridge adds remote multi-client access, background dispatch from any device, and semantic search across your full session history. When you leave your desk, your IDE can't dispatch a task from your phone — AgentiBridge can.
AgentiBridge is self-hosted, vendor-neutral infrastructure. It works with Claude Code, claude.ai, ChatGPT, Grok, and any MCP client. You control the storage backend, embedding model, and access policies. MIT licensed.
No. pip install agentibridge && agentibridge run works with zero dependencies. Add Redis and Postgres when you need caching and semantic search.
No. No telemetry, no SaaS. Cloudflare Tunnel is opt-in — your transcripts stay local. Read every line of the source code.
Claude Code CLI, claude.ai, ChatGPT, Grok, and any MCP-compatible client. Run agentibridge connect for ready-to-paste configs.
Control your agents from anywhere.
Get Startedpip install agentibridge