suggest

Pack: lyrics-ovh · Endpoint: https://gateway.pipeworx.io/lyrics-ovh/mcp

Title/artist suggestions for a free-form query (results have track + artist info).

Parameters

NameTypeRequiredDescription
querystringyes
limitnumberno1-50 (default 10)

Example call

Arguments

{
  "query": "bohemian rhapsody"
}

curl

curl -X POST https://gateway.pipeworx.io/lyrics-ovh/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"suggest","arguments":{"query":"bohemian rhapsody"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('suggest', {
  "query": "bohemian rhapsody"
});

More examples

{
  "query": "love songs",
  "limit": 5
}

Response shape

Always returns: total, data

FieldTypeDescription
totalnumberTotal number of suggestions available
dataarrayArray of track suggestions with artist info
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total number of suggestions available"
    },
    "data": {
      "type": "array",
      "description": "Array of track suggestions with artist info",
      "items": {
        "type": "object",
        "properties": {
          "artist": {
            "type": "object",
            "description": "Artist information"
          },
          "title": {
            "type": "string",
            "description": "Song title"
          }
        }
      }
    }
  },
  "required": [
    "total",
    "data"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "lyrics-ovh": {
      "url": "https://gateway.pipeworx.io/lyrics-ovh/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026