get_genes
Retrieve detailed information about specific genes using Hugo symbols or Entrez IDs through a batch endpoint on the cBioPortal MCP Server, supporting cancer genomics research.
Instructions
Get information about specific genes by their Hugo symbol or Entrez ID using batch endpoint.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gene_id_type | No | ENTREZ_GENE_ID | |
gene_ids | Yes | ||
projection | No | SUMMARY |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"gene_id_type": {
"default": "ENTREZ_GENE_ID",
"title": "Gene Id Type",
"type": "string"
},
"gene_ids": {
"items": {
"type": "string"
},
"title": "Gene Ids",
"type": "array"
},
"projection": {
"default": "SUMMARY",
"title": "Projection",
"type": "string"
}
},
"required": [
"gene_ids"
],
"type": "object"
}