Skip to main content
Glama
rollbar

Rollbar MCP Server

Official
by rollbar

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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) }],
      };
    },
  • 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) }],
        };
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rollbar/rollbar-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server