countries
Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp
Return the full list of countries recognized by setlist.fm (ISO country codes and names). Use to look up valid country codes before filtering setlist or venue searches.
Example call
Arguments
{}
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":"countries","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('countries', {});
Response shape
| Field | Type | Description |
|---|---|---|
country | array | List of countries |
Full JSON Schema
{
"type": "object",
"properties": {
"country": {
"type": "array",
"description": "List of countries",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Country name"
},
"code": {
"type": "string",
"description": "Country code"
}
}
}
}
}
}
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.