globocan_country_profile
Pack: globocan · Endpoint: https://gateway.pipeworx.io/globocan/mcp
Cancer statistics for one country from the WHO/IARC Global Cancer Observatory (GLOBOCAN): total new cases, deaths and 5-year prevalence, plus the leading cancer sites ranked by new cases and by deaths, with age-standardised rates per 100,000. Use for “how many people get cancer in Japan”, “leading cause of cancer death in Brazil”, or any national cancer burden question.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | Country name or ISO3 code, e.g. “Japan” or “JPN”. |
sex | string | no | both (default), male, or female. |
limit | number | no | How many leading cancer sites to return per measure (default 10). |
Example call
Arguments
{
"country": "Japan"
}
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_country_profile","arguments":{"country":"Japan"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('globocan_country_profile', {
"country": "Japan"
});
More examples
{
"country": "BRA",
"limit": 5
}
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.