top_expressed_genes
Pack: gtex · Endpoint: https://gateway.pipeworx.io/gtex/mcp
Top expressed genes for a tissue.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tissue | string | yes | GTEx tissueSiteDetailId (e.g. “Liver”, “Whole_Blood”) |
filter_mt_gene | boolean | no | Exclude mitochondrial genes (default true). |
num | number | no | 1-1000 (default 50). |
datasetId | string | no | gtex_v8 (default) | gtex_v10 |
Example call
Arguments
{
"tissue": "Whole_Blood"
}
curl
curl -X POST https://gateway.pipeworx.io/gtex/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_expressed_genes","arguments":{"tissue":"Whole_Blood"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_expressed_genes', {
"tissue": "Whole_Blood"
});
More examples
{
"tissue": "Liver",
"num": 100,
"filter_mt_gene": false,
"datasetId": "gtex_v10"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Top expressed genes for a specified tissue"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gtex": {
"url": "https://gateway.pipeworx.io/gtex/mcp"
}
}
}
See Getting Started for client-specific install steps.