evs_terminologies

Pack: nci-evs · Endpoint: https://gateway.pipeworx.io/nci-evs/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/evs_terminologies for the schema, then POST the same URL with its arguments for the data.

Lists the vocabularies NCI Enterprise Vocabulary Services serves, with the release version of each currently loaded.

Tool description as the model sees it

List the terminologies served by NCI Enterprise Vocabulary Services, with the version of each currently loaded. AUTHORITATIVE for which vocabularies are queryable here and which release of NCIt / ICD-10 / MedDRA / SNOMED CT the other tools in this pack are answering from — a concept record is only interpretable against the version it came from.

Parameters

NameTypeRequiredDescription
latest_onlybooleannoOnly the latest loaded version of each terminology (default true). Pass false to see every loaded version.

Example call

Arguments

{
  "latest_only": true
}

curl

curl -X POST https://gateway.pipeworx.io/nci-evs/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"evs_terminologies","arguments":{"latest_only":true}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('evs_terminologies', {
  "latest_only": true
});

Connect

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

{
  "mcpServers": {
    "nci-evs": {
      "url": "https://gateway.pipeworx.io/nci-evs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026