globocan_countries
Pack: globocan · Endpoint: https://gateway.pipeworx.io/globocan/mcp
List or search the 185 countries and territories GLOBOCAN publishes cancer estimates for, with ISO3 codes, world region and Human Development Index band. Call this to find the exact country spelling the other tools expect.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Name fragment or ISO3 code. Omit to list all. |
Example call
Arguments
{
"query": "korea"
}
curl
curl -X POST https://gateway.pipeworx.io/globocan/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"globocan_countries","arguments":{"query":"korea"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('globocan_countries', {
"query": "korea"
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"globocan": {
"url": "https://gateway.pipeworx.io/globocan/mcp"
}
}
}
See Getting Started for client-specific install steps.