get_gene_panels_for_study
Retrieve all gene panels for a specific cancer study in cBioPortal MCP Server, with options for pagination, sorting, and result size to efficiently manage large datasets.
Instructions
Get all gene panels in a specific study with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | ASC | |
limit | No | ||
page_number | No | ||
page_size | No | ||
sort_by | No | genePanelId | |
study_id | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"direction": {
"default": "ASC",
"title": "Direction",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"page_number": {
"default": 0,
"title": "Page Number",
"type": "integer"
},
"page_size": {
"default": 50,
"title": "Page Size",
"type": "integer"
},
"sort_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "genePanelId",
"title": "Sort By"
},
"study_id": {
"title": "Study Id",
"type": "string"
}
},
"required": [
"study_id"
],
"type": "object"
}