paginate_results
Retrieve and manage paginated data from the cBioPortal MCP Server by specifying endpoints, parameters, and methods, enabling efficient access to cancer genomics information.
Instructions
Delegate to utils.pagination.paginate_results with api_client.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpoint | Yes | ||
json_data | No | ||
max_pages | No | ||
method | No | GET | |
params | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"endpoint": {
"title": "Endpoint",
"type": "string"
},
"json_data": {
"default": null,
"title": "Json Data"
},
"max_pages": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Pages"
},
"method": {
"default": "GET",
"title": "Method",
"type": "string"
},
"params": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"required": [
"endpoint"
],
"type": "object"
}