symmap_target_diseases
Pack: symmap · Endpoint: https://gateway.pipeworx.io/symmap/mcp
Diseases associated with a protein target (gene) in SymMap v2 (symmap.org), with OMIM/Orphanet identifiers where the association comes from human genetics. Every edge carries evidence_tier: human_clinical for OMIM/Orphanet-backed gene–disease links, computational_prediction otherwise. A gene–disease link says NOTHING about any herb or ingredient treating the disease.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
target | string | yes | Gene symbol (e.g. “IL6”, “A2M”) or SMTT id (SMTT00001) |
limit | number | no | Max diseases returned, 1-200 (default 50) |
Example call
Arguments
{
"target": "IL6",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/symmap/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"symmap_target_diseases","arguments":{"target":"IL6","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('symmap_target_diseases', {
"target": "IL6",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"symmap": {
"url": "https://gateway.pipeworx.io/symmap/mcp"
}
}
}
See Getting Started for client-specific install steps.