Musixmatch · Capability

Musixmatch API — Artist

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

Run with Naftiko MusixmatchArtist

What You Can Do

GET
Get — get
/v1/artist-get
GET
Get — get
/v1/artist-related-get
GET
Get — get
/v1/artist-search
GET
Get — get
/v1/chart-artists-get

MCP Tools

get

get

read-only idempotent
get-2

get

read-only idempotent
get-3

get

read-only idempotent
get-4

get

read-only idempotent

Capability Spec

musixmatch-artist.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Musixmatch API — Artist
  description: 'Musixmatch API — Artist. 4 operations. Lead operation: Artist. Self-contained Naftiko capability covering
    one Musixmatch business surface.'
  tags:
  - Musixmatch
  - Artist
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MUSIXMATCH_API_KEY: MUSIXMATCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: musixmatch-artist
    baseUri: https://api.musixmatch.com/ws/1.1
    description: Musixmatch API — Artist business capability. Self-contained, no shared references.
    resources:
    - name: artist.get
      path: /artist.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: artist_id
          in: query
          type: string
          description: The musiXmatch artist id
          required: true
    - name: artist.related.get
      path: /artist.related.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: artist_id
          in: query
          type: string
          description: The musiXmatch artist id
          required: true
        - name: page_size
          in: query
          type: number
          description: Define the page size for paginated results.Range is 1 to 100.
        - name: page
          in: query
          type: number
          description: Define the page number for paginated results
    - name: artist.search
      path: /artist.search
      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: q_artist
          in: query
          type: string
          description: The song artist
        - name: f_artist_id
          in: query
          type: number
          description: When set, filter by this artist id
        - name: page
          in: query
          type: number
          description: Define the page number for paginated results
        - name: page_size
          in: query
          type: number
          description: Define the page size for paginated results.Range is 1 to 100.
    - name: chart.artists.get
      path: /chart.artists.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: page
          in: query
          type: number
          description: Define the page number for paginated results
        - name: page_size
          in: query
          type: number
          description: Define the page size for paginated results.Range is 1 to 100.
        - name: country
          in: query
          type: string
          description: A valid ISO 3166 country code
    authentication:
      type: apikey
      key: apikey
      value: '{{env.MUSIXMATCH_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: musixmatch-artist-rest
    port: 8080
    description: REST adapter for Musixmatch API — Artist. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/artist-get
      name: artist-get
      description: REST surface for artist.get.
      operations:
      - method: GET
        name: get
        description: get
        call: musixmatch-artist.get
        with:
          format: rest.format
          callback: rest.callback
          artist_id: rest.artist_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/artist-related-get
      name: artist-related-get
      description: REST surface for artist.related.get.
      operations:
      - method: GET
        name: get
        description: get
        call: musixmatch-artist.get
        with:
          format: rest.format
          callback: rest.callback
          artist_id: rest.artist_id
          page_size: rest.page_size
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/artist-search
      name: artist-search
      description: REST surface for artist.search.
      operations:
      - method: GET
        name: get
        description: get
        call: musixmatch-artist.get
        with:
          format: rest.format
          callback: rest.callback
          q_artist: rest.q_artist
          f_artist_id: rest.f_artist_id
          page: rest.page
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/chart-artists-get
      name: chart-artists-get
      description: REST surface for chart.artists.get.
      operations:
      - method: GET
        name: get
        description: get
        call: musixmatch-artist.get
        with:
          format: rest.format
          callback: rest.callback
          page: rest.page
          page_size: rest.page_size
          country: rest.country
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: musixmatch-artist-mcp
    port: 9090
    transport: http
    description: MCP adapter for Musixmatch API — Artist. 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-artist.get
      with:
        format: tools.format
        callback: tools.callback
        artist_id: tools.artist_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-2
      description: get
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: musixmatch-artist.get
      with:
        format: tools.format
        callback: tools.callback
        artist_id: tools.artist_id
        page_size: tools.page_size
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: get-3
      description: get
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: musixmatch-artist.get
      with:
        format: tools.format
        callback: tools.callback
        q_artist: tools.q_artist
        f_artist_id: tools.f_artist_id
        page: tools.page
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: get-4
      description: get
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: musixmatch-artist.get
      with:
        format: tools.format
        callback: tools.callback
        page: tools.page
        page_size: tools.page_size
        country: tools.country
      outputParameters:
      - type: object
        mapping: $.