MCP.so
Sign In
Servers

Rollbar MCP Server

@hiyorineko

MCP server implementation for Rollbar API integration

Overview

What is Rollbar MCP Server?

A dynamic MCP server that integrates with the Rollbar API, enabling LLMs to interact with Rollbar error tracking data. It is intended for developers who want to query and manage Rollbar projects, errors, occurrences, deployments, and users through natural language or chat interfaces.

How to use Rollbar MCP Server?

Configure environment variables (ROLLBAR_PROJECT_TOKEN, ROLLBAR_ACCOUNT_TOKEN, and optionally ROLLBAR_PROJECT_ID and ROLLBAR_PROJECT_NAME). Use with Cursor by adding the server to ~/.cursor/mcp.json with the command npx -y @hiyorineko/mcp-rollbar-server and the required tokens. Alternatively, clone the repository, run npm install && npm run build, and point to the built script with your Node.js path.

Key features of Rollbar MCP Server

  • List and filter error items by status, level, and environment.
  • Get detailed error information including stack trace.
  • View error occurrences with pagination.
  • Access project and environment details.
  • Track deployments with filtering by project and environment.
  • List and get details of users and teams.

Use cases of Rollbar MCP Server

  • Query the most recent errors in a production environment.
  • Retrieve full details of a specific error item, including recent occurrences.
  • Show recent deployments for a given project.
  • List all critical errors that occurred in the last week.
  • View project, environment, and user information from your Rollbar account.

FAQ from Rollbar MCP Server

What tokens do I need to use this server?

You need at least a ROLLBAR_PROJECT_TOKEN for project-level APIs (items, occurrences, deploys, environments) and a ROLLBAR_ACCOUNT_TOKEN for account-level APIs (projects, users). For full functionality, configure both.

How do I obtain Rollbar access tokens?

Log in to Rollbar. For project tokens go to Settings → Project Access Tokens; for account tokens go to Settings → Account Access Tokens. Create a token with "read" scope.

Are ROLLBAR_PROJECT_ID and ROLLBAR_PROJECT_NAME required?

No, they are optional. They set a default project ID and name used when not specified in requests.

Which tools require which token?

Tools related to items, occurrences, deploys, and environments require ROLLBAR_PROJECT_TOKEN. Tools to list/get projects and users require ROLLBAR_ACCOUNT_TOKEN. See the API correspondence table in the README for details.

How is the server run?

It runs as an MCP server via npx -y @hiyorineko/mcp-rollbar-server (for quick use) or by building the repository locally and pointing your MCP client to the compiled dist/src/index.js file.

More from Other