Raygun · Capability

Raygun Public API — Applications

Raygun Public API — Applications business capability. 4 operations against the Raygun v3 REST API.

Raygun Public API — Applications is a Naftiko capability published by Raygun, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the GET and POST methods rooted at /v3/applications.

The capability includes 3 read-only operations and 1 state-changing operation. Lead operation: List Applications. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Raygun, Applications, and Observability.

Run with Naftiko RaygunApplicationsObservability

What You Can Do

GET
List applications — List Applications
/v3/applications
GET
Get application by identifier — Get Application by Identifier
/v3/applications/{application-identifier}
GET
Get application by apikey — Get Application by Api Key
/v3/applications/api-key/{api-key}
POST
Regenerate application api key — Regenerate Application Api Key
/v3/applications/{application-identifier}/regenerate-api-key

MCP Tools

raygun-list-applications

List Applications

read-only idempotent
raygun-get-application-by-identifier

Get Application by Identifier

read-only idempotent
raygun-get-application-by-apikey

Get Application by Api Key

read-only idempotent
raygun-regenerate-application-api-key

Regenerate Application Api Key

Capability Spec

applications-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Raygun Public API \u2014 Applications"
  description: "Raygun Public API \u2014 Applications business capability. 4 operations against the Raygun v3 REST API."
  tags:
  - Raygun
  - Applications
  - Observability
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    RAYGUN_PERSONAL_ACCESS_TOKEN: RAYGUN_PERSONAL_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: applications-applications
    baseUri: https://api.raygun.com/v3
    description: "Raygun Public API \u2014 Applications. Self-contained Naftiko capability."
    resources:
    - name: applications
      path: /applications
      operations:
      - name: list-applications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: null
          in: query
          type: string
          description: ''
          required: false
        - name: null
          in: query
          type: string
          description: ''
          required: false
        - name: orderby
          in: query
          type: array
          description: Order items by property values
          required: false
    - name: applications-application-identifier
      path: /applications/{application-identifier}
      operations:
      - name: get-application-by-identifier
        method: GET
        description: Get Application by Identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    - name: applications-api-key-api-key
      path: /applications/api-key/{api-key}
      operations:
      - name: get-application-by-apikey
        method: GET
        description: Get Application by Api Key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    - name: applications-application-identifier-regenerate-api-key
      path: /applications/{application-identifier}/regenerate-api-key
      operations:
      - name: regenerate-application-api-key
        method: POST
        description: Regenerate Application Api Key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
    authentication:
      type: bearer
      value: '{{env.RAYGUN_PERSONAL_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: applications-applications-rest
    port: 8080
    description: REST adapter for Raygun Applications.
    resources:
    - path: /v3/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: list-applications
        description: List Applications
        call: applications-applications.list-applications
        with:
          null: rest.query.None
          orderby: rest.query.orderby
        outputParameters:
        - type: object
          mapping: $.
    - path: /v3/applications/{application-identifier}
      name: applications-application-identifier
      description: REST surface for applications-application-identifier.
      operations:
      - method: GET
        name: get-application-by-identifier
        description: Get Application by Identifier
        call: applications-applications.get-application-by-identifier
        with: {}
        outputParameters:
        - type: object
          mapping: $.
    - path: /v3/applications/api-key/{api-key}
      name: applications-api-key-api-key
      description: REST surface for applications-api-key-api-key.
      operations:
      - method: GET
        name: get-application-by-apikey
        description: Get Application by Api Key
        call: applications-applications.get-application-by-apikey
        with: {}
        outputParameters:
        - type: object
          mapping: $.
    - path: /v3/applications/{application-identifier}/regenerate-api-key
      name: applications-application-identifier-regenerate-api-key
      description: REST surface for applications-application-identifier-regenerate-api-key.
      operations:
      - method: POST
        name: regenerate-application-api-key
        description: Regenerate Application Api Key
        call: applications-applications.regenerate-application-api-key
        with: {}
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: applications-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Raygun Applications.
    tools:
    - name: raygun-list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applications-applications.list-applications
      with:
        null: tools.None
        orderby: tools.orderby
      outputParameters:
      - type: object
        mapping: $.
    - name: raygun-get-application-by-identifier
      description: Get Application by Identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applications-applications.get-application-by-identifier
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: raygun-get-application-by-apikey
      description: Get Application by Api Key
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applications-applications.get-application-by-apikey
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: raygun-regenerate-application-api-key
      description: Regenerate Application Api Key
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: applications-applications.regenerate-application-api-key
      with: {}
      outputParameters:
      - type: object
        mapping: $.