venue

Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp

Fetch a setlist.fm venue record by venue id. Returns venue name, city, country, coordinates, and URL.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804"
}

curl

curl -X POST https://gateway.pipeworx.io/setlist-fm/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"venue","arguments":{"id":"13d5ff04-a8f4-4ed4-be08-67e0b5df8804"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('venue', {
  "id": "13d5ff04-a8f4-4ed4-be08-67e0b5df8804"
});

Response shape

FieldTypeDescription
idstringVenue ID
namestringVenue name
urlstringVenue URL
cityobjectCity info
coordsobjectCoordinates
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Venue ID"
    },
    "name": {
      "type": "string",
      "description": "Venue name"
    },
    "url": {
      "type": "string",
      "description": "Venue URL"
    },
    "city": {
      "type": "object",
      "description": "City info"
    },
    "coords": {
      "type": "object",
      "description": "Coordinates"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "setlist-fm": {
      "url": "https://gateway.pipeworx.io/setlist-fm/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026