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

@vitalyostanin/sentry-mcp

v0.1.2

Published

Sentry MCP server providing orgs, projects, and issues search via Model Context Protocol.

Downloads

22

Readme

Sentry MCP Server

Also available in Russian: README-ru.md

CI npm version

Sentry MCP server provides tools for working with Sentry organizations, projects, and issues directly from Claude Code, Code CLI, and other MCP clients.

Table of Contents

Features

  • List organizations and projects available to the token.
  • Query issues with filters: query, multiple environment, statsPeriod or since/until, project, pagination via cursor.
  • Consistent structured responses with toolSuccess/toolError.

Requirements

  • Node.js 20+
  • Environment variables:
    • SENTRY_URL — Sentry base URL
    • SENTRY_TOKEN — Sentry auth token (Bearer)
    • SENTRY_TIMEZONE — optional, defaults to Europe/Moscow
    • SENTRY_READ_ONLY — optional, defaults to true
    • SENTRY_HTTP_TIMEOUT_MS — optional request timeout in ms (default 10000)

Installation

Using npx (Recommended)

npx -y @vitalyostanin/sentry-mcp@latest

Manual Installation (Development)

npm ci
npm run build

Running the server (stdio)

node dist/index.js

Configuration for Code (Recommended)

Add to ~/.code/config.toml:

[mcp_servers.sentry-mcp]
command = "npx"
args = ["-y", "@vitalyostanin/sentry-mcp@latest"]

[mcp_servers.sentry-mcp.env]
SENTRY_URL = "https://sentry.example.com"
SENTRY_TOKEN = "<token>"

Configuration for Claude Code CLI

{
  "mcpServers": {
    "sentry-mcp": {
      "command": "npx",
      "args": ["-y", "@vitalyostanin/sentry-mcp@latest"],
      "env": {
        "SENTRY_URL": "https://sentry.example.com",
        "SENTRY_TOKEN": "<token>"
      }
    }
  }
}

Configuration for VS Code Cline

Add similar entry to your cline_mcp_settings.json:

{
  "mcpServers": {
    "sentry-mcp": {
      "command": "npx",
      "args": ["-y", "@vitalyostanin/sentry-mcp@latest"],
      "env": {
        "SENTRY_URL": "https://sentry.example.com",
        "SENTRY_TOKEN": "<token>"
      }
    }
  }
}

MCP Tools

| Tool | Description | | --- | --- | | service_info | Status information: url, tokenPresent, timezone, readOnly, version. | | sentry_organizations | List organizations with pagination (cursor/perPage); brief mode by default. | | sentry_projects | List projects in an organization; supports query, pagination, brief mode. | | sentry_issues | List issues with filters: query, environments, statsPeriod or since/until, project; pagination supported. | | sentry_issue_latest_event | Get latest event for an issue (brief summary by default). | | sentry_issues_latest_events_batch | Get latest events for multiple issues with safe concurrency. | | sentry_issues_details_batch | Get issue details for multiple issues with safe concurrency. |