Radio Cult · Capability

Radio Cult API — Recordings

Radio Cult API — Recordings. 2 operations. Lead operation: Retrieve recordings. Self-contained Naftiko capability covering one Radio Cult business surface.

Run with Naftiko Radio CultRecordings

What You Can Do

GET
Get — Retrieve recordings
/v1/api/station/{stationid}/media/recording
GET
Get — Get a signed download URL for a recording
/v1/api/station/{stationid}/media/recording/{recordingid}/download-url

MCP Tools

retrieve-recordings

Retrieve recordings

read-only idempotent
get-signed-download-url-recording

Get a signed download URL for a recording

read-only idempotent

Capability Spec

radio-cult-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Radio Cult API — Recordings
  description: 'Radio Cult API — Recordings. 2 operations. Lead operation: Retrieve recordings. Self-contained Naftiko capability
    covering one Radio Cult business surface.'
  tags:
  - Radio Cult
  - Recordings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RADIO_CULT_API_KEY: RADIO_CULT_API_KEY
capability:
  consumes:
  - type: http
    namespace: radio-cult-recordings
    baseUri: https://api.radiocult.fm
    description: Radio Cult API — Recordings business capability. Self-contained, no shared references.
    resources:
    - name: api-station-stationId-media-recording
      path: /api/station/{stationId}/media/recording
      operations:
      - name: get
        method: GET
        description: Retrieve recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: stationId
          in: path
          type: string
          required: true
    - name: api-station-stationId-media-recording-recordingId-download-url
      path: /api/station/{stationId}/media/recording/{recordingId}/download-url
      operations:
      - name: get
        method: GET
        description: Get a signed download URL for a recording
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: stationId
          in: path
          type: string
          required: true
        - name: recordingId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.RADIO_CULT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: radio-cult-recordings-rest
    port: 8080
    description: REST adapter for Radio Cult API — Recordings. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/station/{stationid}/media/recording
      name: api-station-stationid-media-recording
      description: REST surface for api-station-stationId-media-recording.
      operations:
      - method: GET
        name: get
        description: Retrieve recordings
        call: radio-cult-recordings.get
        with:
          stationId: rest.stationId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/station/{stationid}/media/recording/{recordingid}/download-url
      name: api-station-stationid-media-recording-recordingid-download-url
      description: REST surface for api-station-stationId-media-recording-recordingId-download-url.
      operations:
      - method: GET
        name: get
        description: Get a signed download URL for a recording
        call: radio-cult-recordings.get
        with:
          stationId: rest.stationId
          recordingId: rest.recordingId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: radio-cult-recordings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Radio Cult API — Recordings. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: retrieve-recordings
      description: Retrieve recordings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: radio-cult-recordings.get
      with:
        stationId: tools.stationId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-signed-download-url-recording
      description: Get a signed download URL for a recording
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: radio-cult-recordings.get
      with:
        stationId: tools.stationId
        recordingId: tools.recordingId
      outputParameters:
      - type: object
        mapping: $.