globocan_countries

Pack: globocan · Endpoint: https://gateway.pipeworx.io/globocan/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/globocan_countries for the schema, then POST the same URL with its arguments for the data.

List or search the 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

NameTypeRequiredDescription
querystringnoName 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.

Regenerated from source · build September 24, 2026