entity
Pack: monarch-initiative · Endpoint: https://gateway.pipeworx.io/monarch-initiative/mcp
Single node by curie (e.g. “MONDO:0007947”).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "MONDO:0007947"
}
curl
curl -X POST https://gateway.pipeworx.io/monarch-initiative/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"entity","arguments":{"id":"MONDO:0007947"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('entity', {
"id": "MONDO:0007947"
});
More examples
{
"id": "HP:0000118"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Node curie identifier |
name | string | Entity name |
category | string | Biolink category |
description | string | Entity description |
xrefs | array | Cross-reference identifiers |
provided_by | array | Data sources providing this entity |
Full JSON Schema
{
"type": "object",
"description": "Single entity node details from Monarch Initiative",
"properties": {
"id": {
"type": "string",
"description": "Node curie identifier"
},
"name": {
"type": "string",
"description": "Entity name"
},
"category": {
"type": "string",
"description": "Biolink category"
},
"description": {
"type": "string",
"description": "Entity description"
},
"xrefs": {
"type": "array",
"description": "Cross-reference identifiers",
"items": {
"type": "string"
}
},
"provided_by": {
"type": "array",
"description": "Data sources providing this entity",
"items": {
"type": "string"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"monarch-initiative": {
"url": "https://gateway.pipeworx.io/monarch-initiative/mcp"
}
}
}
See Getting Started for client-specific install steps.