list-projects
Retrieve configured Rollbar projects to access error tracking data for monitoring and troubleshooting purposes.
Instructions
List configured Rollbar projects available to this MCP server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/list-projects.ts:9-17 (handler)The handler function for the list-projects tool that returns a JSON list of configured projects.
() => { const projects = PROJECTS.map((p) => ({ name: p.name, apiBase: p.apiBase, })); return { content: [{ type: "text", text: JSON.stringify(projects) }], }; }, - src/tools/list-projects.ts:5-18 (registration)Registration of the list-projects tool on the MCP server.
server.tool( "list-projects", "List configured Rollbar projects available to this MCP server", {}, () => { const projects = PROJECTS.map((p) => ({ name: p.name, apiBase: p.apiBase, })); return { content: [{ type: "text", text: JSON.stringify(projects) }], }; }, );