Sentry · Capability

Sentry API — Issues

Sentry API — Issues. 2 operations. Lead operation: Sentry Retrieve an issue. Self-contained Naftiko capability covering one Sentry System business surface.

Run with Naftiko Sentry SystemIssues

What You Can Do

GET
Retrieveissue — Sentry Retrieve an issue
/v1/issues/{issue-id}
GET
Listorganizationissues — Sentry List an organization's issues
/v1/organizations/{organization-id-or-slug}/issues

MCP Tools

sentry-retrieve-issue

Sentry Retrieve an issue

read-only idempotent
sentry-list-organization-s-issues

Sentry List an organization's issues

read-only idempotent

Capability Spec

sentry-issues.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sentry API — Issues
  description: 'Sentry API — Issues. 2 operations. Lead operation: Sentry Retrieve an issue. Self-contained Naftiko capability
    covering one Sentry System business surface.'
  tags:
  - Sentry System
  - Issues
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SENTRY_SYSTEM_API_KEY: SENTRY_SYSTEM_API_KEY
capability:
  consumes:
  - type: http
    namespace: sentry-issues
    baseUri: https://sentry.io/api/0
    description: Sentry API — Issues business capability. Self-contained, no shared references.
    resources:
    - name: issues-issue_id
      path: /issues/{issue_id}/
      operations:
      - name: retrieveissue
        method: GET
        description: Sentry Retrieve an issue
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: organizations-organization_id_or_slug-issues
      path: /organizations/{organization_id_or_slug}/issues/
      operations:
      - name: listorganizationissues
        method: GET
        description: Sentry List an organization's issues
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
          description: An optional Sentry structured search query.
        - name: cursor
          in: query
          type: string
          description: Pagination cursor.
    authentication:
      type: bearer
      token: '{{env.SENTRY_SYSTEM_API_KEY}}'
  exposes:
  - type: rest
    namespace: sentry-issues-rest
    port: 8080
    description: REST adapter for Sentry API — Issues. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/issues/{issue-id}
      name: issues-issue-id
      description: REST surface for issues-issue_id.
      operations:
      - method: GET
        name: retrieveissue
        description: Sentry Retrieve an issue
        call: sentry-issues.retrieveissue
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organization-id-or-slug}/issues
      name: organizations-organization-id-or-slug-issues
      description: REST surface for organizations-organization_id_or_slug-issues.
      operations:
      - method: GET
        name: listorganizationissues
        description: Sentry List an organization's issues
        call: sentry-issues.listorganizationissues
        with:
          query: rest.query
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sentry-issues-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sentry API — Issues. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: sentry-retrieve-issue
      description: Sentry Retrieve an issue
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-issues.retrieveissue
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-list-organization-s-issues
      description: Sentry List an organization's issues
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-issues.listorganizationissues
      with:
        query: tools.query
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.