get_artist
Retrieve artist names from Spotify to enhance music discovery via natural language queries on the Claude platform. Supports GET/POST requests for streamlined data access.
Instructions
Get Artist name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | Get or post request |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"method": {
"description": "Get or post request",
"minLength": 3,
"type": "string"
}
},
"required": [
"method"
],
"type": "object"
}