Rollbar

Rollbar

hiyorineko

Connects to Rollbar's error tracking platform to retrieve and analyze application errors, deployments, and project data through your existing Rollbar account.

Provides a bridge to Rollbar error tracking platform for monitoring and analyzing application errors, retrieving detailed information, managing projects, and tracking deployments.

6439 views4Local (stdio)

What it does

  • List and filter error items across projects
  • Get detailed error information and occurrences
  • Track application deployments
  • Access project and environment details
  • View team and user information
  • Filter errors by environment and status

Best for

Developers debugging production issuesDevOps teams monitoring application healthEngineering managers tracking error trendsTeams doing post-incident analysis
Requires Rollbar API tokensSupports both project and account-level data

About Rollbar

Rollbar is a community-built MCP server published by hiyorineko that provides AI assistants with tools and capabilities via the Model Context Protocol. Monitor application errors and deployments with Rollbar, a cloud-based network monitoring tool for real-time error track It is categorized under developer tools.

How to install

You can install Rollbar in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Rollbar is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

Rollbar MCP Server

License: MIT

A dynamic MCP server implementation for Rollbar API integration, enabling LLMs to interact with Rollbar error tracking data.

Rollbar Server MCP server

Features

  • List and filter error items
  • Get detailed error information
  • View error occurrences
  • Access project and environment details
  • Track deployments
  • List users and teams

Configuration

Environment Variables

  • ROLLBAR_PROJECT_TOKEN: Rollbar Project Access Token - Required for APIs to retrieve project error and deployment information
  • ROLLBAR_ACCOUNT_TOKEN: Rollbar Account Access Token - Required for APIs to access account-wide project and user information
  • ROLLBAR_PROJECT_ID: Default project ID (used when not specified in requests) - Optional
  • ROLLBAR_PROJECT_NAME: Default project name for reference - Optional

Note: Depending on the features you use, you'll need either ROLLBAR_PROJECT_TOKEN, ROLLBAR_ACCOUNT_TOKEN, or both. For full functionality, it's recommended to configure both tokens, but the service will work with only the relevant token for specific APIs.

Required Tokens and API Correspondence Table

APIRequired Token
rollbar_list_itemsROLLBAR_PROJECT_TOKEN
rollbar_get_itemROLLBAR_PROJECT_TOKEN
rollbar_get_item_by_counterROLLBAR_PROJECT_TOKEN
rollbar_list_occurrencesROLLBAR_PROJECT_TOKEN
rollbar_get_occurrenceROLLBAR_PROJECT_TOKEN
rollbar_list_environmentsROLLBAR_PROJECT_TOKEN
rollbar_list_deploysROLLBAR_PROJECT_TOKEN
rollbar_get_deployROLLBAR_PROJECT_TOKEN
rollbar_list_projectsROLLBAR_ACCOUNT_TOKEN
rollbar_get_projectROLLBAR_ACCOUNT_TOKEN
rollbar_list_usersROLLBAR_ACCOUNT_TOKEN
rollbar_get_userROLLBAR_ACCOUNT_TOKEN

You can obtain Rollbar access tokens as follows:

  1. Log in to your Rollbar account (https://rollbar.com/)
  2. For project tokens: Settings -> Project Access Tokens (for project-level access)
  3. For account tokens: Settings -> Account Access Tokens (for account-level access)
  4. Create a new token with "read" scope

How to use

Cursor Integration

Add to your ~/.cursor/mcp.json:

{
    "mcpServers": {
      "rollbar-mcp": {
        "command": "npx",
        "args": ["-y", "@hiyorineko/mcp-rollbar-server"],
        "env": {
          "ROLLBAR_PROJECT_TOKEN": "YOUR_PROJECT_ACCESS_TOKEN",
          "ROLLBAR_ACCOUNT_TOKEN": "YOUR_ACCOUNT_ACCESS_TOKEN",
          "ROLLBAR_PROJECT_ID": "YOUR_PROJECT_ID",
          "ROLLBAR_PROJECT_NAME": "YOUR_PROJECT_NAME"
        }
      }
    }
}

Locally

After cloning this repository, follow these steps to set up the MCP client:

$ cd mcp-rollbar-server
$ npm install
$ npm run build

Add to your ~/.cursor/mcp.json:

{
    "mcpServers": {
      "rollbar-mcp": {
        "command": "YOUR_NODE_PATH",
        "args": ["YOUR_PROJECT_PATH/mcp-rollbar-server/dist/src/index.js"],
        "env": {
          "ROLLBAR_PROJECT_TOKEN": "YOUR_PROJECT_ACCESS_TOKEN",
          "ROLLBAR_ACCOUNT_TOKEN": "YOUR_ACCOUNT_ACCESS_TOKEN",
          "ROLLBAR_PROJECT_ID": "YOUR_PROJECT_ID",
          "ROLLBAR_PROJECT_NAME": "YOUR_PROJECT_NAME"
        }
      }
    }
}

To find the value for "YOUR_NODE_PATH", run which node in your terminal.

Usage Examples

List the most recent errors in my production environment.

View Error Details

Get detailed information for error item with ID 12345, including stack trace and recent occurrences.

Track Deployments

Show me the recent deployments for project 67890.

Filter Errors by Level

List all critical errors that occurred in the last week.

Tools

rollbar_list_items

List items (errors) from Rollbar

  • Input:
    • status (string, optional): Filter by status (active, resolved, muted, etc.)
    • level (string, optional): Filter by level (critical, error, warning, info, debug)
    • environment (string, optional): Filter by environment (production, staging, etc.)
    • limit (number, optional): Maximum number of items to return (default: 20)
    • page (number, optional): Page number for pagination (default: 1)
  • Returns: List of error items with details such as counter, level, total occurrences, etc.

rollbar_get_item

Get a specific item (error) from Rollbar using the internal item ID maintained by Rollbar's system.

  • Input:
    • id (number): Item ID
  • Returns: Detailed information about a specific error item

rollbar_get_item_by_counter

Get a specific item by project counter from Rollbar. The counter is the visible ID that appears in the Rollbar UI.

  • Input:
    • counter (number): Project counter for the item
  • Returns: Detailed information about a specific error item identified by its project counter

rollbar_list_occurrences

List occurrences of errors from Rollbar

  • Input:
    • itemId (number, optional): Item ID to filter occurrences
    • limit (number, optional): Maximum number of occurrences to return (default: 20)
    • page (number, optional): Page number for pagination (default: 1)
  • Returns: List of error occurrences with detailed information

rollbar_get_occurrence

Get a specific occurrence of an error from Rollbar

  • Input:
    • id (string): Occurrence ID
  • Returns: Detailed information about a specific error occurrence

rollbar_list_projects

List projects from Rollbar

  • Input: None
  • Returns: List of projects with their IDs, names, and statuses

rollbar_get_project

Get a specific project from Rollbar

  • Input:
    • id (number): Project ID
  • Returns: Detailed information about a specific project

rollbar_list_environments

List environments from Rollbar

  • Input:
    • projectId (number): Project ID
  • Returns: List of environments for the specified project

rollbar_list_users

List users from Rollbar

  • Input: None
  • Returns: List of users with their IDs, usernames, emails, and access levels

rollbar_get_user

Get a specific user from Rollbar

  • Input:
    • id (number): User ID
  • Returns: Detailed information about a specific user

rollbar_list_deploys

List deploys from Rollbar

  • Input:
    • projectId (number): Project ID
    • environment (string, optional): Environment name
    • limit (number, optional): Maximum number of deploys to return (default: 20)
    • page (number, optional): Page number for pagination (default: 1)
  • Returns: List of deploys for the specified project and environment

rollbar_get_deploy

Get a specific deploy from Rollbar

  • Input:
    • deployId (number): Deploy ID
  • Returns: Detailed information about a specific deployment

Alternatives

Related Skills

Browse all skills
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

18
ai-sdk

Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".

6
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

4
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

4
cli-builder

Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.

3
ydc-ai-sdk-integration

Integrate Vercel AI SDK applications with You.com tools (web search, AI agent, content extraction). Use when developer mentions AI SDK, Vercel AI SDK, generateText, streamText, or You.com integration with AI SDK.

2