globocan_cancer_in_country

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

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

Figures for ONE cancer type in one country — new cases, deaths, 5-year prevalence, age-standardised rate and cumulative risk to age 74. Use when the question names both a cancer and a place, e.g. “breast cancer cases in India” or “how many people die of stomach cancer in South Korea”.

Parameters

NameTypeRequiredDescription
countrystringyesCountry name or ISO3 code.
cancerstringyesCancer site name or fragment, e.g. “breast”, “lung”, “colorectum”.
sexstringnoboth (default), male, or female.

Example call

Arguments

{
  "country": "India",
  "cancer": "breast",
  "sex": "female"
}

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_cancer_in_country","arguments":{"country":"India","cancer":"breast","sex":"female"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('globocan_cancer_in_country', {
  "country": "India",
  "cancer": "breast",
  "sex": "female"
});

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