Sentry · Capability

Sentry Crons API — Check-Ins

Sentry Crons API — Check-Ins. 2 operations. Lead operation: Sentry Retrieve check-ins for a monitor. Self-contained Naftiko capability covering one Sentry System business surface.

Run with Naftiko Sentry SystemCheck-Ins

What You Can Do

GET
Listmonitorcheckins — Sentry Retrieve check-ins for a monitor
/v1/organizations/{organization-id-or-slug}/monitors/{monitor-id-or-slug}/checkins
GET
Listmonitorcheckinsforproject — Sentry Retrieve check-ins for a monitor by project
/v1/projects/{organization-id-or-slug}/{project-id-or-slug}/monitors/{monitor-id-or-slug}/checkins

MCP Tools

sentry-retrieve-check-ins-monitor

Sentry Retrieve check-ins for a monitor

read-only idempotent
sentry-retrieve-check-ins-monitor-2

Sentry Retrieve check-ins for a monitor by project

read-only idempotent

Capability Spec

sentry-crons-check-ins.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sentry Crons API — Check-Ins
  description: 'Sentry Crons API — Check-Ins. 2 operations. Lead operation: Sentry Retrieve check-ins for a monitor. Self-contained
    Naftiko capability covering one Sentry System business surface.'
  tags:
  - Sentry System
  - Check-Ins
  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-crons-check-ins
    baseUri: https://sentry.io/api/0
    description: Sentry Crons API — Check-Ins business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization_id_or_slug-monitors-monitor_id_or_slug-checkins
      path: /organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/checkins/
      operations:
      - name: listmonitorcheckins
        method: GET
        description: Sentry Retrieve check-ins for a monitor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cursor
          in: query
          type: string
          description: Pagination cursor.
    - name: projects-organization_id_or_slug-project_id_or_slug-monitors-monitor_id_or_slug-
      path: /projects/{organization_id_or_slug}/{project_id_or_slug}/monitors/{monitor_id_or_slug}/checkins/
      operations:
      - name: listmonitorcheckinsforproject
        method: GET
        description: Sentry Retrieve check-ins for a monitor by project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: cursor
          in: query
          type: string
          description: Pagination cursor.
    authentication:
      type: bearer
      token: '{{env.SENTRY_SYSTEM_API_KEY}}'
  exposes:
  - type: rest
    namespace: sentry-crons-check-ins-rest
    port: 8080
    description: REST adapter for Sentry Crons API — Check-Ins. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/organizations/{organization-id-or-slug}/monitors/{monitor-id-or-slug}/checkins
      name: organizations-organization-id-or-slug-monitors-monitor-id-or-slug-checkins
      description: REST surface for organizations-organization_id_or_slug-monitors-monitor_id_or_slug-checkins.
      operations:
      - method: GET
        name: listmonitorcheckins
        description: Sentry Retrieve check-ins for a monitor
        call: sentry-crons-check-ins.listmonitorcheckins
        with:
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{organization-id-or-slug}/{project-id-or-slug}/monitors/{monitor-id-or-slug}/checkins
      name: projects-organization-id-or-slug-project-id-or-slug-monitors-monitor-id-or-slug
      description: REST surface for projects-organization_id_or_slug-project_id_or_slug-monitors-monitor_id_or_slug-.
      operations:
      - method: GET
        name: listmonitorcheckinsforproject
        description: Sentry Retrieve check-ins for a monitor by project
        call: sentry-crons-check-ins.listmonitorcheckinsforproject
        with:
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sentry-crons-check-ins-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sentry Crons API — Check-Ins. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: sentry-retrieve-check-ins-monitor
      description: Sentry Retrieve check-ins for a monitor
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-crons-check-ins.listmonitorcheckins
      with:
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.
    - name: sentry-retrieve-check-ins-monitor-2
      description: Sentry Retrieve check-ins for a monitor by project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-crons-check-ins.listmonitorcheckinsforproject
      with:
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.