Musixmatch · Capability

Musixmatch API — Snippets

Musixmatch API — Snippets. 1 operations. Lead operation: Snippets. Self-contained Naftiko capability covering one Musixmatch business surface.

Run with Naftiko MusixmatchSnippets

What You Can Do

GET
Get — get
/v1/track-snippet-get

MCP Tools

get

get

read-only idempotent

Capability Spec

musixmatch-snippets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Musixmatch API — Snippets
  description: 'Musixmatch API — Snippets. 1 operations. Lead operation: Snippets. Self-contained Naftiko capability covering
    one Musixmatch business surface.'
  tags:
  - Musixmatch
  - Snippets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MUSIXMATCH_API_KEY: MUSIXMATCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: musixmatch-snippets
    baseUri: https://api.musixmatch.com/ws/1.1
    description: Musixmatch API — Snippets business capability. Self-contained, no shared references.
    resources:
    - name: track.snippet.get
      path: /track.snippet.get
      operations:
      - name: get
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: format
          in: query
          type: string
          description: 'output format: json, jsonp, xml.'
        - name: callback
          in: query
          type: string
          description: jsonp callback
        - name: track_id
          in: query
          type: string
          description: The musiXmatch track id
          required: true
    authentication:
      type: apikey
      key: apikey
      value: '{{env.MUSIXMATCH_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: musixmatch-snippets-rest
    port: 8080
    description: REST adapter for Musixmatch API — Snippets. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/track-snippet-get
      name: track-snippet-get
      description: REST surface for track.snippet.get.
      operations:
      - method: GET
        name: get
        description: get
        call: musixmatch-snippets.get
        with:
          format: rest.format
          callback: rest.callback
          track_id: rest.track_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: musixmatch-snippets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Musixmatch API — Snippets. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get
      description: get
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: musixmatch-snippets.get
      with:
        format: tools.format
        callback: tools.callback
        track_id: tools.track_id
      outputParameters:
      - type: object
        mapping: $.