MCP Rollbar Server provides a bridge to the Rollbar error tracking platform, enabling AI assistants to monitor and analyze application errors. Developed by hiyorineko, this TypeScript implementation supports retrieving error items with filtering options, accessing detailed error information, viewing error occurrences, managing projects and environments, tracking deployments, and listing users. The server requires Rollbar API tokens (project and/or account level) and can be deployed via npm, locally, or with Docker, making it particularly valuable for developers who need to troubleshoot application issues, monitor error trends, or track deployment impacts through AI assistants.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
List items (errors) from Rollbar. Input: status (string, optional), level (string, optional), environment (string, optional), limit (number, optional), page (number, optional). Returns: List of error items with details such as counter, level, total occurrences, etc.
Get a specific item (error) from Rollbar using the internal item ID. Input: id (number). Returns: Detailed information about a specific error item.
Get a specific item by project counter from Rollbar. Input: counter (number). Returns: Detailed information about a specific error item identified by its project counter.
List occurrences of errors from Rollbar. Input: itemId (number, optional), limit (number, optional), page (number, optional). Returns: List of error occurrences with detailed information.
Get a specific occurrence of an error from Rollbar. Input: id (string). Returns: Detailed information about a specific error occurrence.
List projects from Rollbar. Input: None. Returns: List of projects with their IDs, names, and statuses.
Get a specific project from Rollbar. Input: id (number). Returns: Detailed information about a specific project.
List environments from Rollbar. Input: projectId (number). Returns: List of environments for the specified project.
List users from Rollbar. Input: None. Returns: List of users with their IDs, usernames, emails, and access levels.
Get a specific user from Rollbar. Input: id (number). Returns: Detailed information about a specific user.
List deploys from Rollbar. Input: projectId (number), environment (string, optional), limit (number, optional), page (number, optional). Returns: List of deploys for the specified project and environment.
Get a specific deploy from Rollbar. Input: deployId (number). Returns: Detailed information about a specific deployment.