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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
List items (errors) from Rollbar. Parameters: status (string, optional), level (string, optional), environment (string, optional), limit (number, optional), page (number, optional)
Get a specific item (error) from Rollbar using the internal item ID maintained by Rollbar's system. Parameters: id (number)
Get a specific item by project counter from Rollbar. Parameters: counter (number)
List occurrences of errors from Rollbar. Parameters: itemId (number, optional), limit (number, optional), page (number, optional)
Get a specific occurrence of an error from Rollbar. Parameters: id (string)
List projects from Rollbar. Parameters: None
Get a specific project from Rollbar. Parameters: id (number)
List environments from Rollbar. Parameters: projectId (number)
List users from Rollbar. Parameters: None
Get a specific user from Rollbar. Parameters: id (number)
List deploys from Rollbar. Parameters: projectId (number), environment (string, optional), limit (number, optional), page (number, optional)
Get a specific deploy from Rollbar. Parameters: deployId (number)