tissues
Pack: gtex · Endpoint: https://gateway.pipeworx.io/gtex/mcp
GTEx Portal (Genotype-Tissue Expression project) — the catalogue of human tissue sites GTEx sampled, such as Liver, Whole_Blood and Brain_Cortex. Returns each tissue’s tissueSiteDetailId, display name, parent tissue site, RNA-seq and genotype sample counts and colour code; that id is the spelling every other GTEx expression and eQTL tool expects. Answers which human tissues GTEx covers and how a tissue id is spelled.
Example call
Arguments
{}
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":"tissues","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tissues', {});
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of available tissues in GTEx"
}
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.