Install
$ agentstack add mcp-ratmmmhsquishyrat-acp-hub ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
acp-hub
One local CLI for many ACP coding agents. Register endpoints, open conversations, send prompts, and search the history you captured.
you ──► acp-hub (CLI · MCP · lib) ──► on-demand daemon ──► ACP agents
Crates: acp-hub-cli (binary acp-hub) · acp-hub-core (library).
Why
ACP agents each ship their own client. acp-hub is a shared client + conductor: same commands for omp, Codex, Cursor, Grok, or any stdio/HTTP/WebSocket agent you register. The Hub stores a searchable projection of turns—independent of each agent’s own UI.
Install
cargo install acp-hub-cli --locked
acp-hub --version
Or grab a binary from Releases. Library: cargo add acp-hub-core.
Getting started
First command starts a local daemon. Data lives in ~/.acp-hub (override with --home or ACP_HUB_HOME).
# register an agent (stdio example)
acp-hub agent add omp --command omp --args acp
# open a conversation → prints conv-…
CONV=$(acp-hub conv create omp)
# talk, then inspect / search Hub history
acp-hub send "$CONV" --text "Hello"
acp-hub conv show "$CONV"
acp-hub search "Hello"
PowerShell: $conv = (acp-hub conv create omp).Trim()
Bind an existing agent session: acp-hub conv create --agent-session-id
Sample adapters: adapters/ · optional MCP: acp-hub mcp.
Cheatsheet
| | | |--|--| | agent | add list inspect remove auth logout sessions | | conv | create list show close delete | | send | send --text "…" or --stdin (not conv send) | | search | search [--agent] [--conv] (not conv search) | | config | param list\|set · mode list\|set · proxy add\|list\|remove | | other | cancel · mcp · serve (foreground daemon; usually unnecessary) |
acp-hub [--home DIR] …
Prefer --json when scripting. acp-hub --help is authoritative.
State
| | | |--|--| | agents.json | registered agents / proxies | | hub.db | conversations, messages, full-text search | | daemon.* | singleton daemon lock & metadata |
Agents run as local processes with your privileges—only register commands you trust.
More
Discussions · [Contributing](CONTRIBUTING.md) · [Support](SUPPORT.md) · [Code of Conduct](CODEOF_CONDUCT.md) [CHANGELOG](CHANGELOG.md) · [RELEASING](RELEASING.md) · [SECURITY](SECURITY.md) · skill: .grok/skills/acp-hub/ License: MIT OR Apache-2.0
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: RatmmmhSquishyRat
- Source: RatmmmhSquishyRat/acp-hub
- License: Apache-2.0
- Homepage: https://crates.io/crates/acp-hub-cli
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.