Skip to content
← Community packages

@kentcdodds/sentry

by @kentcdoddsFollow @kentcdodds

Inspect Sentry organizations, projects, issues, and event summaries.

  • sentry
  • debugging
  • issues
  • observability
  • agents
  • openapi
License
MIT
Published
July 13, 2026
Pinned commit
2f24bce
Rating
No ratings yet
Forks
1
Stars
0
Adaptation effort

One-click install

Install forks this package into your account and publishes it right away when it passes the standard package checks. This listing has not been reviewed by an admin.

Log in to install this package.

Fork with your agent

Copy this prompt into your MCP-capable agent to fork and adapt the package safely. Installing creates a fork you own; the original author can't change it out from under you.

Use Kody to fork the community package "@kentcdodds/sentry" (listing id: 0e75b90a-1fd7-4a4a-9ae1-167384bbd227). Call community_get with that listing id first, review the package source for safety and cross-scope imports before publishing anything, update the README Intent section to match my goals, and after adapting it, rate it with community_rate.

README

@kentcdodds/sentry

Intent

Headless Sentry utilities for Kody workflows — organizations, projects, issue search, event summaries, and agent-ready triage using the sentryAuthToken secret. The low-level REST layer is a thin OpenAPI-scaffolded client (listorganizations, listorganizationprojects, listorganizationissues) plus a small escape-hatch request helper for endpoints missing from Sentry's public OpenAPI inventory (e.g. latest issue event).

When To Use

  • List organizations or projects before querying issues.
  • Search unresolved issues with optional latest-event summaries for triage.
  • Inspect a specific issue, its events, or build a full triage bundle.
  • Call uncommon Sentry REST endpoints via request.

Required setup

  • Secret sentryAuthToken (user scope) — sent as a bearer token on every API call.
  • Host approval for sentry.io on that secret.

Exports

  • kody:@kentcdodds/sentry — package overview
  • kody:@kentcdodds/sentry/list-organizations — list organizations
  • kody:@kentcdodds/sentry/list-projects — list projects for an org
  • kody:@kentcdodds/sentry/resolve-project — resolve project by slug or id
  • kody:@kentcdodds/sentry/search-issues — search issues (paginated, includeLatestSummaries flags)
  • kody:@kentcdodds/sentry/get-issue — fetch one issue
  • kody:@kentcdodds/sentry/get-latest-issue-event — latest event for an issue
  • kody:@kentcdodds/sentry/get-issue-events — list recent events
  • kody:@kentcdodds/sentry/summarize-issue-event — summarize an event or latest event by issueId
  • kody:@kentcdodds/sentry/triage-issue — agent-ready triage bundle
  • kody:@kentcdodds/sentry/request — generic Sentry REST call (for uncovered paths)

Examples

Search unresolved issues:

import searchIssues from 'kody:@kentcdodds/sentry/search-issues'

const issues = await searchIssues({
  orgSlug: 'kent-c-dodds-tech-llc',
  query: 'is:unresolved',
  statsPeriod: '14d',
  limit: 5,
})

Triage one issue:

import triageIssue from 'kody:@kentcdodds/sentry/triage-issue'

const triage = await triageIssue({ issueId: '7459536382', recentEventLimit: 3 })

Stars

0 stars

Log in to star this package.

Report this listing

Log in to report this listing.