entity

Pack: monarch-initiative · Endpoint: https://gateway.pipeworx.io/monarch-initiative/mcp

Single node by curie (e.g. “MONDO:0007947”).

Parameters

NameTypeRequiredDescription
idstringyes

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

FieldTypeDescription
idstringNode curie identifier
namestringEntity name
categorystringBiolink category
descriptionstringEntity description
xrefsarrayCross-reference identifiers
provided_byarrayData 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.

Regenerated from source · build July 6, 2026