globocan_cancer_in_country
Pack: globocan · Endpoint: https://gateway.pipeworx.io/globocan/mcp
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
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | Country name or ISO3 code. |
cancer | string | yes | Cancer site name or fragment, e.g. “breast”, “lung”, “colorectum”. |
sex | string | no | both (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.