top_tissues
Pack: protein-atlas · Endpoint: https://gateway.pipeworx.io/protein-atlas/mcp
List a protein’s top-expressing human tissues by RNA expression (nTPM), highest first, for one Ensembl gene id. Use search_genes to find the Ensembl id. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ensembl_id | string | yes | An Ensembl gene id like “ENSG00000146648”. |
limit | number | no | Max tissues to return (default 10). |
Example call
Arguments
{
"ensembl_id": "ENSG00000146648"
}
curl
curl -X POST https://gateway.pipeworx.io/protein-atlas/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_tissues","arguments":{"ensembl_id":"ENSG00000146648"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_tissues', {
"ensembl_id": "ENSG00000146648"
});
More examples
{
"ensembl_id": "ENSG00000146648",
"limit": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"protein-atlas": {
"url": "https://gateway.pipeworx.io/protein-atlas/mcp"
}
}
}
See Getting Started for client-specific install steps.