{"id":30112416,"url":"https://github.com/rollbar/rollbar-mcp-server","last_synced_at":"2025-08-10T06:17:04.298Z","repository":{"id":289193326,"uuid":"968809630","full_name":"rollbar/rollbar-mcp-server","owner":"rollbar","description":"Pre-release - Model Context Protocol server for Rollbar","archived":false,"fork":false,"pushed_at":"2025-07-27T06:06:30.000Z","size":84,"stargazers_count":12,"open_issues_count":2,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T00:53:25.630Z","etag":null,"topics":["mcp","mcp-client","mcp-server","mcp-servers","mcp-servers-directory"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rollbar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-18T19:20:06.000Z","updated_at":"2025-07-27T06:06:12.000Z","dependencies_parsed_at":"2025-04-22T04:13:39.792Z","dependency_job_id":"012006dd-ee3b-43c4-ae82-675655569689","html_url":"https://github.com/rollbar/rollbar-mcp-server","commit_stats":null,"previous_names":["rollbar/rollbar-mcp-server"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/rollbar/rollbar-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rollbar","download_url":"https://codeload.github.com/rollbar/rollbar-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-mcp-server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269684074,"owners_count":24458836,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp","mcp-client","mcp-server","mcp-servers","mcp-servers-directory"],"created_at":"2025-08-10T06:17:00.115Z","updated_at":"2025-08-10T06:17:04.288Z","avatar_url":"https://github.com/rollbar.png","language":"TypeScript","funding_links":[],"categories":["🌐 Web Development","📚 Projects (2474 total)"],"sub_categories":["MCP Servers"],"readme":"# rollbar-mcp-server\n\nA Model Context Protocol (MCP) server for [Rollbar](https://rollbar.com).\n\n\u003e [!NOTE]\n\u003e This software is alpha quality and under active development.\n\n## Features\n\nThis MCP server implementes the `stdio` server type, which means your AI tool (e.g. Claude) will run it directly; you don't run a separate process or connect over http.\n\n### Configuration\n\n`ROLLBAR_ACCESS_TOKEN`: an access token for your Rollbar project with `read` and/or `write` scope.\n\n### Tools\n\n`get-item-details(counter, max_tokens?)`: Given an item number, fetch the item details and last occurrence details. Supports an optional `max_tokens` parameter (default: 20000) to automatically truncate large occurrence responses. Example prompt: `Diagnose the root cause of Rollbar item #123456`\n\n`get-deployments(limit)`: List deploy data for the given project. Example prompt: `List the last 5 deployments` or `Are there any failed deployments?`\n\n`get-version(version, environment)`: Fetch version details for the given version string, environment name, and the configured project.\n\n`get-top-items(environment)`: Fetch the top items in the last 24 hours given the environment name, and the configured project.\n\n`list-items(environment)`: List items filtered by status, environment and a search query.\n\n`update-item(itemId, status?, level?, title?, assignedUserId?, resolvedInVersion?, snoozed?, teamId?)`: Update an item's properties including status, level, title, assignment, and more. Example prompt: `Mark Rollbar item #123456 as resolved` or `Assign item #123456 to user ID 789`. (Requires `write` scope)\n\n## How to Use\n\nTested with node 20 and 22 (`nvm use 22`).\n\nInstall and build:\n\n```\nnpm install\nnpm run build\n```\n\n### Claude Code\n\nConfigure your `.mcp.json` as follows:\n\nUsing npx (recommended):\n\n```\n{\n  \"mcpServers\": {\n    \"rollbar\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"@rollbar/mcp-server@latest\"\n      ],\n      \"env\": {\n        \"ROLLBAR_ACCESS_TOKEN\": \"\u003cproject read/write access token\u003e\"\n      }\n    }\n  }\n}\n```\n\nOr using a local development installation - see CONTRIBUTING.md.\n\n\n### VS Code\n\nConfigure your `.vscode/mcp.json` as follows:\n\nUsing npx (recommended):\n\n```\n{\n  \"servers\": {\n    \"rollbar\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"@rollbar/mcp-server@latest\"\n      ],\n      \"env\": {\n        \"ROLLBAR_ACCESS_TOKEN\": \"\u003cproject read/write access token\u003e\"\n      }\n    }\n  }\n}\n```\n\nOr using a local development installation - see CONTRIBUTING.md.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Frollbar-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frollbar%2Frollbar-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Frollbar-mcp-server/lists"}