list_countries
Pack: radio · Endpoint: https://gateway.pipeworx.io/radio/mcp
The countries with internet radio stations listed, from the Radio Browser directory.
Tool description as the model sees it
Browse available countries with radio stations. Returns country names and station counts to help target your search geographically.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/radio/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_countries","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_countries', {});
Response shape
Always returns: count, countries
| Field | Type | Description |
|---|---|---|
count | number | Total number of countries |
countries | array | Countries with radio stations, sorted by station count |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Total number of countries"
},
"countries": {
"type": "array",
"description": "Countries with radio stations, sorted by station count",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Country name"
},
"stationcount": {
"type": "number",
"description": "Number of radio stations in country"
}
},
"required": [
"name",
"stationcount"
]
}
}
},
"required": [
"count",
"countries"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"radio": {
"url": "https://gateway.pipeworx.io/radio/mcp"
}
}
}
See Getting Started for client-specific install steps.