Sentry · Capability

Sentry API — Projects

Sentry API — Projects. 2 operations. Lead operation: Sentry List an organization's projects. Self-contained Naftiko capability covering one Sentry System business surface.

Run with Naftiko Sentry SystemProjects

What You Can Do

GET
Listorganizationprojects — Sentry List an organization's projects
/v1/organizations/{organization-id-or-slug}/projects
GET
Retrieveproject — Sentry Retrieve a project
/v1/projects/{organization-id-or-slug}/{project-id-or-slug}

MCP Tools

sentry-list-organization-s-projects

Sentry List an organization's projects

read-only idempotent
sentry-retrieve-project

Sentry Retrieve a project

read-only idempotent

Capability Spec

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