Bugsnag MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Bugsnag MCP or direct API to monitor errors, triage incidents, update bug statuses, and automate notifications through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Bugsnag Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Bugsnag now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Collaborator to TeamsTool to add a collaborator to a group of teams in a Bugsnag organization.
Add Collaborators to TeamTool to add collaborators to a team in a Bugsnag organization.
Bulk Update ErrorsBulk update multiple errors in a Bugsnag project.
Configure IntegrationTool to configure a new integration for a Bugsnag project.
Confirm Project Event Data DeletionConfirms a project event data deletion request in Bugsnag.
Invite CollaboratorInvites a new collaborator to a Bugsnag organization by email.
Create Custom Event FieldCreates a custom event field for a Bugsnag project, enabling filtering and pivoting on custom metadata.
Create Organization ProjectTool to create a new project in a Bugsnag organization.
Create Organization TeamTool to create a new team in a Bugsnag organization.
Create Organization Data Deletion RequestTool to create an event data deletion request for GDPR/CCPA compliance.
Create Organization Data RequestTool to create an event data request for a Bugsnag organization (GDPR/CCPA compliance).
Create Project Event Data Deletion RequestTool to create an event data deletion request for a specific project.
Create Project Event Data RequestTool to create an event data request for a Bugsnag project.
Create Saved SearchCreates a saved search (filterset) for a Bugsnag project that persists filter and sort configurations.
Delete All Errors in a ProjectPermanently deletes all errors and event data from a Bugsnag project.
Delete CollaboratorRemoves a collaborator from a Bugsnag organization.
Delete a configured integrationTool to delete a configured integration.
Delete Custom Event FieldDeletes a custom event field from a Bugsnag project.
Delete OrganizationPermanently deletes a Bugsnag organization.
Delete Organization TeamTool to delete a team from a Bugsnag organization.
Delete ProjectPermanently deletes a Bugsnag project.
Delete Saved SearchPermanently deletes a saved search (filterset) from a Bugsnag project.
Get Configured IntegrationTool to retrieve details of a specific configured integration by its ID.
Get Organization By IDTool to view an organization by its ID.
Get Organization Collaborator Project Access CountsTool to view the project count of collaborators in an organization.
Get Organization Collaborator ProjectsTool to view projects a collaborator has access to in an organization.
Get Organization Event Data RequestTool to check the status of an organization event data request.
Get Organization TeamTool to show the details of a team in an organization.
Get Organization Data Deletion StatusTool to check the status of an organization event data deletion request in Bugsnag.
Get Pivot Values on a ProjectList pivot values for a project, showing how events are distributed across different values of a field.
Get Project Data Deletion StatusTool to check the status of a project event data deletion request in Bugsnag.
Get Project Event Data RequestTool to check the status of a project event data request.
Get Project Network Grouping RulesetTool to retrieve a project's network grouping ruleset.
Get Saved SearchRetrieves the details of a specific saved search by its unique ID.
Get Saved Search Usage SummaryRetrieves usage statistics for a saved search, showing how it is being used across the project.
List Collaborator Access Details for ProjectsTool to list summary details of the projects a collaborator has access to.
List CollaboratorsTool to list collaborators in an organization.
List Collaborators on ProjectTool to list collaborators on a project.
List Configured Integrations for ProjectRetrieves all configured integrations for a Bugsnag project.
List Errors on ProjectList all errors in a Bugsnag project with optional filtering and sorting.
List Event Fields for ProjectLists all event fields available for filtering and pivoting in a Bugsnag project.
List Events for ErrorLists individual error event occurrences for a specific error group.
List Events on ProjectList all error events for a Bugsnag project.
List OrganizationsTool to list organizations for the authenticated user.
List Organization TeamsTool to list teams in an organization.
List Pivots for ProjectLists all pivot field definitions for a Bugsnag project.
List Project Feature FlagsList feature flags on a Bugsnag project for a specific release stage.
List Project Feature Flag SummariesList feature flag summaries for a Bugsnag project with optional search filtering.
List ProjectsTool to list projects in an organization.
List Release GroupsTool to list release groups for a project.
List ReleasesList all releases (deployed versions) of a Bugsnag project.
List Saved Searches on ProjectLists all saved searches for a Bugsnag project.
List Supported IntegrationsTool to list all supported integrations.
List Trends for Project BucketsRetrieves time-segmented event counts (trend buckets) for a Bugsnag project.
Regenerate Project API KeyRegenerates a Bugsnag project's notifier API key.
Show Collaborator Access Details for ProjectTool to show a collaborator's access details for a project.
Show Collaborator on OrganizationTool to show a collaborator in an organization.
Show Collaborator on ProjectTool to show a collaborator in a project.
Test IntegrationTool to test an integration configuration before deploying it.
Update Collaborator PermissionsTool to update a collaborator's project access permissions.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Bugsnag tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Bulk update errors in project 12345 to set status as resolved')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Bugsnag Integration

  • Supports both Bugsnag MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Bugsnag data

Managed Auth

  • Built-in API key handling with secure credential storage
  • Central place to manage, scope, and revoke Bugsnag access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Bugsnag
  • Scoped, least privilege access to Bugsnag resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Bugsnag with Composio?

Yes, Bugsnag requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.