median_expression
Pack: gtex · Endpoint: https://gateway.pipeworx.io/gtex/mcp
Median expression across tissues for a gene (TPM).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
gene | string | yes | Gencode id or symbol. |
Example call
Arguments
{
"gene": "TP53"
}
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":"median_expression","arguments":{"gene":"TP53"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('median_expression', {
"gene": "TP53"
});
More examples
{
"gene": "ENSG00000141510.16"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Median expression values across tissues for a gene in TPM"
}
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.