MCPFast / Tools / Agent Bus: Local message bus for AI agents without daemon or cloud
A local message bus for AI agents using a single SQLite file, no daemon, no cloud, optimized for Claude Code and Codex.
View on GitHub→Agent Bus is a lightweight, local message bus designed for AI agent development. It facilitates communication between multiple AI agents by leveraging a single SQLite file for message persistence. This approach eliminates the need for external daemons or cloud infrastructure, simplifying deployment and reducing operational overhead. Agent Bus is specifically optimized for use with models like Claude Code and Codex, making it a valuable tool for developers building complex AI systems that require efficient inter-agent communication.
Agent Bus acts as a central hub for AI agents to exchange messages. Agents can publish messages to specific topics, and other agents subscribed to those topics will receive the messages. The entire message queue and state are stored within a single SQLite database file. This means that all communication is local to your development environment or server, ensuring data privacy and control. The absence of a separate daemon process simplifies setup and maintenance, as there's only one core component to manage.
Agent Bus is an ideal solution for AI developers who are building multi-agent systems and prioritize a simple, self-contained architecture. This includes: