MCP server
by hiyorineko
Monitor application errors and deployments with Rollbar, a cloud-based network monitoring tool for real-time error track
Connects to Rollbar's error tracking platform to retrieve and analyze application errors, deployments, and project data through your existing Rollbar account.
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.
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.
MIT
Rollbar is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Rollbar is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: Rollbar is the kind of server we cite when onboarding engineers to host + tool permissions.
I recommend Rollbar for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Rollbar surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Rollbar reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Rollbar is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We wired Rollbar into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated Rollbar against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated Rollbar against two servers with overlapping tools; this profile had the clearer scope statement.
Rollbar is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
showing 1-10 of 35
A dynamic MCP server implementation for Rollbar API integration, enabling LLMs to interact with Rollbar error tracking data.
<a href="https://glama.ai/mcp/servers/@hiyorineko/mcp-rollbar-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@hiyorineko/mcp-rollbar-server/badge" alt="Rollbar Server MCP server" /> </a>ROLLBAR_PROJECT_TOKEN: Rollbar Project Access Token - Required for APIs to retrieve project error and deployment informationROLLBAR_ACCOUNT_TOKEN: Rollbar Account Access Token - Required for APIs to access account-wide project and user informationROLLBAR_PROJECT_ID: Default project ID (used when not specified in requests) - OptionalROLLBAR_PROJECT_NAME: Default project name for reference - OptionalNote: 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.
| API | Required Token |
|---|---|
rollbar_list_items | ROLLBAR_PROJECT_TOKEN |
rollbar_get_item | ROLLBAR_PROJECT_TOKEN |
rollbar_get_item_by_counter | ROLLBAR_PROJECT_TOKEN |
rollbar_list_occurrences | ROLLBAR_PROJECT_TOKEN |
rollbar_get_occurrence | ROLLBAR_PROJECT_TOKEN |
rollbar_list_environments | ROLLBAR_PROJECT_TOKEN |
rollbar_list_deploys | ROLLBAR_PROJECT_TOKEN |
rollbar_get_deploy | ROLLBAR_PROJECT_TOKEN |
rollbar_list_projects | ROLLBAR_ACCOUNT_TOKEN |
rollbar_get_project | ROLLBAR_ACCOUNT_TOKEN |
rollbar_list_users | ROLLBAR_ACCOUNT_TOKEN |
rollbar_get_user | ROLLBAR_ACCOUNT_TOKEN |
You can obtain Rollbar access tokens as follows:
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"
}
}
}
}
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.
List the most recent errors in my production environment.
Get detailed information for error item with ID 12345, including stack trace and recent occurrences.
Show me the recent deployments for project 67890.
List all critical errors that occurred in the last week.
List items (errors) from Rollbar
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)Get a specific item (error) from Rollbar using the internal item ID maintained by Rollbar's system.
id (number): Item IDGet a specific item by project counter from Rollbar. The counter is the visible ID that appears in the Rollbar UI.
counter (number): Project counter for the itemList occurrences of errors from Rollbar
itemId (number, optional): Item ID to filter occurrenceslimit (number, optional): Maximum number of occurrences to return (default: 20)page (number, optional): Page number for pagination (default: 1)Get a specific occurrence of an error from Rollbar
id (string): Occurrence IDList projects from Rollbar
Get a specific project from Rollbar
id (number): Project IDList environments from Rollbar
projectId (number): Project IDList users from Rollbar
Get a specific user from Rollbar
id (number): User IDList deploys from Rollbar
projectId (number): Project IDenvironment (string, optional): Environment namelimit (number, optional): Maximum number of deploys to return (default: 20)page (number, optional): Page number for pagination (default: 1)Get a specific deploy from Rollbar
deployId (number): Deploy IDPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.