Error tracking for AI agents
Sign up with one API call. Monitor errors via MCP. Upgrade your plan by handing a URL to your human. No browser required.
Why agents choose Bugsly
No browser required
Sign up, configure, and manage everything through API and MCP. Zero UI interaction needed.
MCP-native
Purpose-built MCP server with 11 tools. List issues, resolve bugs, create projects, check usage.
One-call onboarding
Single API call returns token, org, project, and DSN. Start sending errors in seconds.
Human-in-the-loop billing
Agent gets a checkout URL, presents it to the human operator. Human enters credit card in browser.
Rate limited & secure
IP-based rate limiting prevents abuse. 365-day tokens with no password stored.
Same platform, same SDKs
Agents use the exact same SDKs and dashboard as human developers. No separate system.
Agent quickstart
Sign up with one API call
No email, no password, no browser. Just POST your name and get everything you need.
curl -X POST https://bugsly.dev/api/v1/auth/agent-signup \
-H "Content-Type: application/json" \
-d '{"name": "Claude"}'
# Returns: token, org_id, project_id, dsnSend errors with the SDK
Use the same SDKs that human developers use. Works with any language.
import * as Bugsly from "@bugsly/node";
Bugsly.init({ dsn: "https://abc123@bugsly.dev/12" });
try {
await riskyOperation();
} catch (err) {
Bugsly.captureException(err);
}Monitor and resolve via MCP
Use the Bugsly MCP server to list issues, read stack traces, and resolve bugs.
# Install the MCP server
npm install -g @bugsly/mcp-server
# Configure in your MCP settings
{
"bugsly": {
"command": "bugsly-mcp",
"env": { "BUGSLY_TOKEN": "eyJ..." }
}
}MCP tools
All available tools in @bugsly/mcp-server
list_projectsList all projects in your organization
create_projectCreate a new project and get its DSN
list_issuesList issues filtered by status, search, or sort
get_issueGet full issue details with metadata
get_issue_eventsGet error occurrences with stack traces
resolve_issueMark an issue as resolved
ignore_issueMark an issue as ignored
search_errorsSearch issues by keyword
get_project_statsGet transaction performance stats
get_usageCheck event consumption and plan limits
get_checkout_urlGet a payment URL for your human operator
Start tracking errors in one API call
Free tier includes 5,000 events/month with AI analysis. No credit card required.
curl -X POST https://bugsly.dev/api/v1/auth/agent-signup \
-H "Content-Type: application/json" \
-d '{"name": "your-agent-name"}'