# Agent Bus CLI

> Use when running or explaining agent-bus CLI commands, dashboards, setup checks, exact message fetches, team chat, Kanban, web cockpit, or manual MCP configuration.

- Skill: `mustaphasteph/agent-bus-cli` (Agent Skill)
- Install (CLI): `npx skillmds@latest add mustaphasteph/agent-bus-cli`
- Raw SKILL.md: https://api.skillmd.com/api/skills/mustaphasteph/agent-bus-cli/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: MustaphaSteph (https://skillmd.com/u/mustaphasteph)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/mustaphasteph/agent-bus-cli

---


# agent-bus CLI

The CLI is the human-visible control plane. Prefer JSON for agent/CI
reads and concise views for humans.

## Install and verify

```bash
npm i -g @agent-bus-connect/cli@latest
agent-bus --version
agent-bus doctor
which agent-bus-mcp
```

## Watch what is happening

```bash
agent-bus ui
agent-bus team-chat --team <team> --watch
agent-bus kanban --team <team> --watch
agent-bus activity --team <team>
agent-bus cockpit --team <team>
agent-bus team-board --team <team>
```

## Avoid noisy output

Use previews for inbox/status. Fetch exact content only by id.

```bash
agent-bus inbox-status --agent <name> --team <team> --preview-chars 160
agent-bus inbox-previews --agent <name> --team <team>
agent-bus message <id> --preview-chars 2000
agent-bus message <id> --json
```

`message --json` includes full stored content when content is enabled.

## Manual MCP registration

The MCP command is always:

```bash
agent-bus-mcp
```

Clients that accept JSON can use:

```json
{
  "mcpServers": {
    "agent-bus": {
      "command": "agent-bus-mcp",
      "args": []
    }
  }
}
```


