Install
$ agentstack add mcp-kanevry-agentbus ✓ 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 No
- ✓ 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.
About
AgentBus The open-source event bus for AI agents. Webhooks in. Agent actions out.
Why
AI agents need events to act on. But connecting webhooks to agents means writing custom HTTP servers, parsing payloads, handling retries, and managing queues — for every single integration.
AgentBus is a lightweight, self-hosted event bus that handles all of that. Receive webhooks. Route to agents. Dispatch actions. Works with any AI framework: CrewAI, LangGraph, OpenAI Agents SDK, or plain HTTP.
Quick Start
npm install agentbus
import { AgentBus } from 'agentbus';
const bus = new AgentBus({
handlers: [
{
name: 'issue-triage',
pattern: 'github:issues.*',
handle: async (ctx) => {
ctx.logger.info(`New issue: ${ctx.event.payload.title}`);
// Call your AI agent here
return { success: true };
},
},
],
});
// Receive an event
await bus.emit({
source: 'github',
type: 'issues.opened',
payload: { title: 'Bug: login fails', labels: ['bug'] },
});
Features
| Feature | Community (Free) | Pro | |---------|-----------------|-----| | Webhook Ingestion | ✅ Unlimited | ✅ + Verified Sources | | Routing | ✅ Glob Patterns | ✅ + Content-based | | Queue | ✅ In-Memory + BullMQ | ✅ + Rate Limiting | | Storage | ✅ SQLite + PostgreSQL | ✅ + Event Replay, DLQ | | Agents | ✅ HTTP Adapter | ✅ + A2A, MCP Server | | Dispatch | ✅ Unlimited | ✅ + Dedup, Filters | | Support | GitHub Issues | Priority Email |
Architecture
Webhooks (GitHub, Stripe, Sentry, ...)
│
▼
┌──────────────┐
│ AgentBus │
│ ┌──────────┐ │
│ │ Router │ │ ← Glob pattern matching
│ └──────────┘ │
│ ┌──────────┐ │
│ │ Queue │ │ ← In-memory or BullMQ
│ └──────────┘ │
│ ┌──────────┐ │
│ │ Store │ │ ← SQLite or PostgreSQL
│ └──────────┘ │
└──────────────┘
│
▼
AI Agents (HTTP, CrewAI, LangGraph, ...)
Integrations
AgentBus works with any AI agent framework:
- HTTP — POST events to any endpoint
- CrewAI — Trigger crew tasks from webhooks
- LangGraph — Send events to LangGraph workflows
- OpenAI Agents SDK — Dispatch to OpenAI agents
- A2A Protocol — Agent-to-agent communication (Pro)
- MCP Server — Model Context Protocol integration (Pro)
Documentation
Visit agentbus.dev for full documentation.
Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.
License
[MIT](LICENSE) — AgentBus core is free and open source.
@agentbus/pro is available under a commercial license.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Kanevry
- Source: Kanevry/agentbus
- License: MIT
- Homepage: https://agentbus.dev
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.