get_project
Pack: gdc · Endpoint: https://gateway.pipeworx.io/gdc/mcp
Look up a single NCI GDC project by project_id (e.g. “TCGA-BRCA”) and get its details plus summary counts (case_count, file_count). Keyless, open-access metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | string | yes | GDC project id, e.g. “TCGA-BRCA”, “TARGET-AML”. |
Example call
Arguments
{
"project_id": "TCGA-BRCA"
}
curl
curl -X POST https://gateway.pipeworx.io/gdc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_project","arguments":{"project_id":"TCGA-BRCA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_project', {
"project_id": "TCGA-BRCA"
});
More examples
{
"project_id": "TARGET-AML"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gdc": {
"url": "https://gateway.pipeworx.io/gdc/mcp"
}
}
}
See Getting Started for client-specific install steps.