7digital · Capability

7digital / MassiveMusic Streaming Platform API — Interactive Radio

7digital / MassiveMusic Streaming Platform API — Interactive Radio. 4 operations. Lead operation: 7digital Create Interactive Radio Session. Self-contained Naftiko capability covering one 7digital / MassiveMusic business surface.

Run with Naftiko 7digital / MassiveMusicMusicInteractive Radio

What You Can Do

POST
Createinteractiveradiosession — 7digital Create Interactive Radio Session
/v1/interactive-radio/sessions
DELETE
Deleteinteractiveradiosession — 7digital Delete Interactive Radio Session
/v1/interactive-radio/sessions/{session-id}
GET
Getinteractiveradionexttrack — 7digital Get Interactive Radio Next Track
/v1/interactive-radio/sessions/{session-id}/next-track
POST
Postinteractiveradioplaybackevents — 7digital Post Interactive Radio Playback Events
/v1/interactive-radio/sessions/{session-id}/events

MCP Tools

create-interactive-radio-session

7digital Create Interactive Radio Session

delete-interactive-radio-session

7digital Delete Interactive Radio Session

idempotent
get-interactive-radio-next-track

7digital Get Interactive Radio Next Track

read-only idempotent
post-interactive-radio-playback-events

7digital Post Interactive Radio Playback Events

Capability Spec

streaming-platform-interactive-radio.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: 7digital / MassiveMusic Streaming Platform API — Interactive Radio
  description: '7digital / MassiveMusic Streaming Platform API — Interactive Radio. 4 operations. Lead operation: 7digital Create Interactive Radio Session. Self-contained Naftiko capability covering one
    7digital / MassiveMusic business surface.'
  tags:
  - 7digital / MassiveMusic
  - Music
  - Interactive Radio
  created: '2026-05-28'
  modified: '2026-05-28'
binds:
- namespace: env
  keys:
    SEVENDIGITAL_CONSUMER_KEY: SEVENDIGITAL_CONSUMER_KEY
    SEVENDIGITAL_CONSUMER_SECRET: SEVENDIGITAL_CONSUMER_SECRET
capability:
  consumes:
  - type: http
    namespace: streaming-platform-interactive-radio
    baseUri: https://api.7digital.com
    description: 7digital / MassiveMusic Streaming Platform API — Interactive Radio business capability. Self-contained, no shared references.
    authentication:
      type: apikey
      key: oauth_consumer_key
      value: '{{env.SEVENDIGITAL_CONSUMER_KEY}}'
      placement: query
    resources:
    - name: interactive-radio-sessions
      path: /interactive-radio/sessions
      operations:
      - name: createInteractiveRadioSession
        method: POST
        description: 7digital Create Interactive Radio Session
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
          description: Request body payload.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: interactive-radio-sessions-sessionid
      path: /interactive-radio/sessions/{sessionId}
      operations:
      - name: deleteInteractiveRadioSession
        method: DELETE
        description: 7digital Delete Interactive Radio Session
        inputParameters:
        - name: sessionId
          in: path
          type: string
          required: true
          description: Interactive Radio session id.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: interactive-radio-sessions-sessionid-next-track
      path: /interactive-radio/sessions/{sessionId}/next-track
      operations:
      - name: getInteractiveRadioNextTrack
        method: GET
        description: 7digital Get Interactive Radio Next Track
        inputParameters:
        - name: sessionId
          in: path
          type: string
          required: true
          description: Interactive Radio session id.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: interactive-radio-sessions-sessionid-events
      path: /interactive-radio/sessions/{sessionId}/events
      operations:
      - name: postInteractiveRadioPlaybackEvents
        method: POST
        description: 7digital Post Interactive Radio Playback Events
        inputParameters:
        - name: sessionId
          in: path
          type: string
          required: true
          description: Interactive Radio session id.
        - name: body
          in: body
          type: object
          required: true
          description: Request body payload.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: streaming-platform-interactive-radio-rest
    port: 8080
    description: REST adapter for 7digital / MassiveMusic Streaming Platform API — Interactive Radio. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/interactive-radio/sessions
      name: interactive-radio-sessions
      description: REST surface for interactive-radio-sessions.
      operations:
      - method: POST
        name: createInteractiveRadioSession
        description: 7digital Create Interactive Radio Session
        call: streaming-platform-interactive-radio.createInteractiveRadioSession
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/interactive-radio/sessions/{session-id}
      name: interactive-radio-sessions-session-id
      description: REST surface for interactive-radio-sessions-session-id.
      operations:
      - method: DELETE
        name: deleteInteractiveRadioSession
        description: 7digital Delete Interactive Radio Session
        call: streaming-platform-interactive-radio.deleteInteractiveRadioSession
        with:
          sessionId: rest.sessionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/interactive-radio/sessions/{session-id}/next-track
      name: interactive-radio-sessions-session-id-next-track
      description: REST surface for interactive-radio-sessions-session-id-next-track.
      operations:
      - method: GET
        name: getInteractiveRadioNextTrack
        description: 7digital Get Interactive Radio Next Track
        call: streaming-platform-interactive-radio.getInteractiveRadioNextTrack
        with:
          sessionId: rest.sessionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/interactive-radio/sessions/{session-id}/events
      name: interactive-radio-sessions-session-id-events
      description: REST surface for interactive-radio-sessions-session-id-events.
      operations:
      - method: POST
        name: postInteractiveRadioPlaybackEvents
        description: 7digital Post Interactive Radio Playback Events
        call: streaming-platform-interactive-radio.postInteractiveRadioPlaybackEvents
        with:
          sessionId: rest.sessionId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streaming-platform-interactive-radio-mcp
    port: 9090
    transport: http
    description: MCP adapter for 7digital / MassiveMusic Streaming Platform API — Interactive Radio. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: create-interactive-radio-session
      description: 7digital Create Interactive Radio Session
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: streaming-platform-interactive-radio.createInteractiveRadioSession
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-interactive-radio-session
      description: 7digital Delete Interactive Radio Session
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: streaming-platform-interactive-radio.deleteInteractiveRadioSession
      with:
        sessionId: tools.sessionId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-interactive-radio-next-track
      description: 7digital Get Interactive Radio Next Track
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streaming-platform-interactive-radio.getInteractiveRadioNextTrack
      with:
        sessionId: tools.sessionId
      outputParameters:
      - type: object
        mapping: $.
    - name: post-interactive-radio-playback-events
      description: 7digital Post Interactive Radio Playback Events
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: streaming-platform-interactive-radio.postInteractiveRadioPlaybackEvents
      with:
        sessionId: tools.sessionId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.