rollbar-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ROLLBAR_API_BASE_URL | No | The Rollbar API base URL. Must be HTTPS and cannot include credentials, a query string, or a fragment. Defaults to https://api.rollbar.com. | https://api.rollbar.com |
| ROLLBAR_QA_ACCESS_TOKEN | No | Rollbar project access token for the QA environment (read scope). | |
| ROLLBAR_PROD_ACCESS_TOKEN | No | Rollbar project access token for the production environment (read scope). | |
| ROLLBAR_STAGING_ACCESS_TOKEN | No | Rollbar project access token for the staging environment (read scope). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| rollbar_list_environmentsA | List configured Rollbar credential environments without exposing their access tokens. |
| rollbar_getA | Make one authenticated GET request to a Rollbar API path. This tool is read-only and may truncate large output. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
rollbar_list_environments is clearly specific to listing environments, while rollbar_get is a generic authenticated GET. The risk of confusion is low, though rollbar_get could technically be used to list environments as well, making boundaries slightly blurred.
Both tools share the rollbar_ prefix and use verb-first naming. However, rollbar_list_environments has a verb_noun structure while rollbar_get is just a verb, so the pattern is not perfectly uniform.
Only two tools for a platform as feature-rich as Rollbar is very thin. The generic GET tool provides some flexibility, but the server feels understaffed for its domain.
The toolset is entirely read-only: listing environments and making GET requests. There are no create, update, or delete operations, leaving many Rollbar workflows inaccessible. The generic GET helps read data but cannot close the gap for write operations.