error-broker
Classifies agent errors and provides clear recovery actions (retry, escalate) with configurable categories and strategies, plus MCP tools for direct agent use.
README
error-broker
Classify agent errors and get a clear recovery action.
Agents hit rate limits, auth failures, timeouts, and bad JSON all the time. Most stacks treat every failure the same. error-broker maps the raw error to a category and tells you what to do next: wait and retry, or stop and escalate.
Free and open source (MIT). No account. No API key.
Why it helps
- Same rules for Cursor agents, scripts, and app code
- Useful defaults out of the box
- Optional YAML if you want custom categories or strategies
- MCP tools so agents can call it directly
- Repeat failures escalate instead of looping forever
Install (Cursor MCP)
Add this to .cursor/mcp.json or ~/.cursor/mcp.json:
{
"mcpServers": {
"error-broker": {
"command": "npx",
"args": ["-y", "github:amsultan2010/error-broker", "mcp"]
}
}
}
Reload Cursor. The agent gets tools like handle_error and classify_error.
If you clone this repo locally, you can point Cursor at the built CLI instead:
{
"mcpServers": {
"error-broker": {
"command": "node",
"args": ["/absolute/path/to/error-broker/dist/cli.js", "mcp"]
}
}
}
Install (npm)
npm i error-broker
import { handle, classifyError, createBroker } from "error-broker";
const decision = handle({
status: 429,
message: "Rate limit exceeded",
context: { run_id: "job-1", tool: "openai" },
});
console.log(decision.instructions);
// RETRY [rate_limit]: wait 60s, then retry (attempt 1/3). ...
CLI
npx error-broker classify '{"status":429,"message":"Rate limit exceeded"}'
npx error-broker handle '{"status":401,"message":"Invalid API key"}'
npx error-broker categories
npx error-broker strategies
What you get back
handle returns JSON like:
{
"category": "rate_limit",
"action": "retry",
"wait_seconds": 60,
"max_attempts": 3,
"attempt": 1,
"should_retry": true,
"escalate": false,
"reason": "Rate limited. Wait, then retry.",
"instructions": "RETRY [rate_limit]: wait 60s, then retry (attempt 1/3). Rate limited. Wait, then retry."
}
Pass the same context.run_id on later failures so attempt counting and escalation work.
Default categories
rate_limit, quota, auth, timeout, network, overloaded, context_overflow, invalid_response, not_found, tool_failure, unknown
Custom config (optional)
npx error-broker handle --config-dir ./my-config '{"status":429,"message":"slow down"}'
Put taxonomy.yaml and strategies.yaml in that folder. Examples live in defaults/.
MCP tools
classify_error: map an error to a categoryhandle_error: classify plus recovery advicelist_categories: show taxonomylist_strategies: show recovery rulesreset_attempts: clear counters for a run
SDK
The npm package is the SDK. Import it in your agent code:
import { createBroker, handle, classifyError } from "error-broker";
const broker = createBroker();
const result = broker.handle({
status: 503,
message: "service unavailable",
context: { run_id: "batch-9", tool: "search" },
});
if (result.should_retry) {
// wait result.wait_seconds, then retry your call
}
See examples/sdk-usage.mjs.
Until the package is on npm, install from GitHub:
npm i github:amsultan2010/error-broker
Development
npm install
npm test
npm run build
node dist/cli.js classify '{"status":429,"message":"rate limit"}'
node examples/sdk-usage.mjs
Cursor Marketplace
This repo is packaged as a Cursor plugin (.cursor-plugin/plugin.json + mcp.json).
Submit it at: https://cursor.com/marketplace/publish
Cursor reviews marketplace plugins manually. Use this repo URL:
https://github.com/amsultan2010/error-broker
License
MIT. See LICENSE.
The MIT license is fully set up: LICENSE file in the repo root and "license": "MIT" in package.json.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.