globocan_cancer_types
Pack: globocan · Endpoint: https://gateway.pipeworx.io/globocan/mcp
List the 41 cancer sites GLOBOCAN reports, with their ICD-10 code ranges and whether a site is sex-specific. Call this to find the exact site name globocan_cancer_in_country expects.
Example call
Arguments
{}
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_types","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('globocan_cancer_types', {});
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.