get_descriptor

Pack: mesh · Endpoint: https://gateway.pipeworx.io/mesh/mcp

Get full detail for a MeSH descriptor by its ID (e.g. “D003920” = Diabetes Mellitus): its preferred label, entry terms (synonyms MeSH indexes under it), allowable qualifiers (subheadings like “drug therapy”, “epidemiology”), and related see-also headings. Keyless.

Parameters

NameTypeRequiredDescription
mesh_idstringyesA MeSH descriptor ID, e.g. “D003920” (Diabetes Mellitus) or “D001241” (Aspirin).

Example call

Arguments

{
  "mesh_id": "D003920"
}

curl

curl -X POST https://gateway.pipeworx.io/mesh/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_descriptor","arguments":{"mesh_id":"D003920"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_descriptor', {
  "mesh_id": "D003920"
});

More examples

{
  "mesh_id": "D001241"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mesh": {
      "url": "https://gateway.pipeworx.io/mesh/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026