symmap_ingredient
Pack: symmap · Endpoint: https://gateway.pipeworx.io/symmap/mcp
One Traditional Chinese Medicine ingredient (molecule) from SymMap v2 (symmap.org): its protein targets with literature evidence (PubMed-cited edges are tier “laboratory”, uncited ones “computational_prediction”) and the herbs it has been identified in. A target association is a molecular finding or a prediction — NOT evidence the ingredient treats any condition.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ingredient | string | yes | Ingredient name (e.g. “quercetin”) or SMIT id (SMIT00013) |
targets_limit | number | no | Max protein targets returned, 1-200 (default 50) |
herbs_limit | number | no | Max source herbs returned, 1-200 (default 25) |
Example call
Arguments
{
"ingredient": "quercetin",
"targets_limit": 3,
"herbs_limit": 3
}
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_ingredient","arguments":{"ingredient":"quercetin","targets_limit":3,"herbs_limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('symmap_ingredient', {
"ingredient": "quercetin",
"targets_limit": 3,
"herbs_limit": 3
});
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.