Sentry · Capability

Sentry Error Monitoring API — Projects

Sentry Error Monitoring API — Projects. 2 operations. Lead operation: List projects for an organization. Self-contained Naftiko capability covering one Sentry business surface.

Run with Naftiko SentryProjects

What You Can Do

GET
Listprojects — List projects for an organization
/v1/organizations/{organization-slug}/projects
GET
Retrieveproject — Retrieve a project
/v1/projects/{organization-slug}/{project-slug}

MCP Tools

list-projects-organization

List projects for an organization

read-only idempotent
retrieve-project

Retrieve a project

read-only idempotent

Capability Spec

sentry-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sentry Error Monitoring API — Projects
  description: 'Sentry Error Monitoring API — Projects. 2 operations. Lead operation: List projects for an organization. Self-contained
    Naftiko capability covering one Sentry business surface.'
  tags:
  - Sentry
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SENTRY_API_KEY: SENTRY_API_KEY
capability:
  consumes:
  - type: http
    namespace: sentry-projects
    baseUri: https://sentry.io/api/0
    description: Sentry Error Monitoring API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization_slug-projects
      path: /organizations/{organization_slug}/projects/
      operations:
      - name: listprojects
        method: GET
        description: List projects for an organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
        - name: limit
          in: query
          type: integer
    - name: projects-organization_slug-project_slug
      path: /projects/{organization_slug}/{project_slug}/
      operations:
      - name: retrieveproject
        method: GET
        description: Retrieve a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SENTRY_API_KEY}}'
  exposes:
  - type: rest
    namespace: sentry-projects-rest
    port: 8080
    description: REST adapter for Sentry Error Monitoring API — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{organization-slug}/projects
      name: organizations-organization-slug-projects
      description: REST surface for organizations-organization_slug-projects.
      operations:
      - method: GET
        name: listprojects
        description: List projects for an organization
        call: sentry-projects.listprojects
        with:
          query: rest.query
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{organization-slug}/{project-slug}
      name: projects-organization-slug-project-slug
      description: REST surface for projects-organization_slug-project_slug.
      operations:
      - method: GET
        name: retrieveproject
        description: 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 Error Monitoring API — Projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-projects-organization
      description: List projects for an organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-projects.listprojects
      with:
        query: tools.query
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-project
      description: Retrieve a project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sentry-projects.retrieveproject
      outputParameters:
      - type: object
        mapping: $.