npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rosentry-mcp

v0.2.0

Published

MCP (Model Context Protocol) server for RoSentry - AI-powered error monitoring for Roblox

Readme

rosentry-mcp

MCP (Model Context Protocol) server for RoSentry - AI-powered error monitoring for Roblox games.

This package allows Claude and other MCP-compatible AI assistants to query, analyze, and manage errors from your Roblox games directly in conversation.

Features

  • Query Errors - Fetch recent errors with filters (level, user, place)
  • Error Groups - View deduplicated/grouped errors with occurrence counts
  • Trends Analysis - See error frequency over time (1h, 24h, 7d, 30d)
  • Full-Text Search - Search across error messages and stack traces
  • User Impact - See which Roblox users are affected by specific errors
  • Status Management - Resolve, ignore, or reopen error groups

Installation

npm install -g rosentry-mcp

Or use with npx (no install required):

npx rosentry-mcp

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ROSENTRY_SUPABASE_URL | Yes | Your Supabase project URL | | ROSENTRY_SUPABASE_KEY | Yes | Supabase service role key | | ROSENTRY_API_KEY | Yes | Your RoSentry project API key (rs_...) |

Claude Desktop Setup

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "rosentry": {
      "command": "npx",
      "args": ["rosentry-mcp"],
      "env": {
        "ROSENTRY_SUPABASE_URL": "https://your-project.supabase.co",
        "ROSENTRY_SUPABASE_KEY": "your-service-role-key",
        "ROSENTRY_API_KEY": "rs_your_api_key"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "rosentry": {
      "command": "rosentry-mcp",
      "env": {
        "ROSENTRY_SUPABASE_URL": "https://your-project.supabase.co",
        "ROSENTRY_SUPABASE_KEY": "your-service-role-key",
        "ROSENTRY_API_KEY": "rs_your_api_key"
      }
    }
  }
}

Available Tools

get_recent_errors

Fetch recent error events with full details including stack traces and context.

| Parameter | Type | Description | |-----------|------|-------------| | limit | number | Max errors to return (default: 20, max: 100) | | level | string | Filter by level: error, warn, info, debug | | user_id | number | Filter by Roblox UserId | | place_id | number | Filter by Roblox PlaceId | | search | string | Search term for error messages |

get_error_groups

Fetch grouped/deduplicated errors showing occurrence counts and status.

| Parameter | Type | Description | |-----------|------|-------------| | limit | number | Max groups to return (default: 20, max: 50) | | status | string | Filter by status: open, resolved, ignored | | search | string | Search term for error messages |

get_error_group_details

Get detailed info about a specific error group including individual events.

| Parameter | Type | Description | |-----------|------|-------------| | group_id | string | Required. UUID of the error group | | include_events | boolean | Include individual events (default: true) | | events_limit | number | Max events to include (default: 10) |

get_error_trends

Get error frequency trends over time.

| Parameter | Type | Description | |-----------|------|-------------| | timeframe | string | Time range: 1h, 24h, 7d, 30d (default: 24h) | | group_by | string | Grouping: hour or day |

search_errors

Full-text search across error messages and stack traces.

| Parameter | Type | Description | |-----------|------|-------------| | query | string | Required. Search query | | limit | number | Max results (default: 20) |

get_affected_users

Get Roblox users affected by a specific error group.

| Parameter | Type | Description | |-----------|------|-------------| | group_id | string | Required. UUID of the error group | | limit | number | Max users to return (default: 50) |

get_stats

Get summary statistics for your project.

| Parameter | Type | Description | |-----------|------|-------------| | timeframe | string | Time range: 1h, 24h, 7d, 30d (default: 24h) |

Returns: Total errors, errors by level, open groups count, affected users, top 5 errors.

update_error_status

Update the status of an error group.

| Parameter | Type | Description | |-----------|------|-------------| | group_id | string | Required. UUID of the error group | | status | string | Required. New status: open, resolved, ignored |

Example Usage with Claude

Once configured, you can ask Claude things like:

  • "What errors happened in the last hour?"
  • "Show me the top errors affecting users"
  • "Search for errors related to 'DataStore'"
  • "How many users are affected by error group abc-123?"
  • "Mark that error as resolved"
  • "What's the error trend for the past week?"

Development

# Clone the repo
git clone https://github.com/rosentry/rosentry.git
cd rosentry/mcp

# Install dependencies
npm install

# Run in development
npm run dev

# Build for production
npm run build

Related

License

MIT - see LICENSE