term
Pack: hpo-api · Endpoint: https://gateway.pipeworx.io/hpo-api/mcp
“What does HP:[N] mean” / “look up HPO phenotype [ID]” — fetch a single Human Phenotype Ontology (HPO) term by ID. HPO is the standard ontology for clinical phenotypes used in rare-disease research. Returns label, definition, synonyms, cross-references. Example ID: HP:0001250 (Seizure).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "HP:0000118"
}
curl
curl -X POST https://gateway.pipeworx.io/hpo-api/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"term","arguments":{"id":"HP:0000118"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('term', {
"id": "HP:0000118"
});
More examples
{
"id": "HP:0001250"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "HPO term details"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hpo-api": {
"url": "https://gateway.pipeworx.io/hpo-api/mcp"
}
}
}
See Getting Started for client-specific install steps.