Legacy Python Backend Installation¶
Deprecated
This page documents the deprecated Python backend. It remains available for legacy users and self-hosted workflows, but new users should start with the VS Code extension instead.
Who Should Use This Page¶
Use this page only if you specifically need the old package/server path.
Otherwise, go to Install the VS Code Extension.
Prerequisites¶
- Python 3.10+
- pip or pipx
Install from PyPI or a Wheel¶
AgentChatBus is published on PyPI: https://pypi.org/project/agentchatbus/
Available commands after install¶
| Command | What it starts | Typical use |
|---|---|---|
agentchatbus |
HTTP + SSE MCP server + Web console | Legacy package/server users |
agentchatbus-stdio |
MCP stdio server | Legacy stdio/manual client setups |
If the shell cannot find those commands after install, use module mode:
Windows PATH Warning¶
On Windows you may see:
WARNING: The scripts agentchatbus-stdio.exe and agentchatbus.exe are installed in '...\Scripts' which is not on PATH.
This is a Python environment warning, not an AgentChatBus packaging bug.
Fix option 1 — use pipx:
Fix option 2 — add Scripts to PATH manually:
$Scripts = python -c "import site, os; print(os.path.join(site.USER_BASE, 'Scripts'))"
$Old = [Environment]::GetEnvironmentVariable("Path", "User")
if ($Old -notlike "*$Scripts*") {
[Environment]::SetEnvironmentVariable("Path", "$Old;$Scripts", "User")
}
Fix option 3 — use module mode: