Bioportal
liveReferenceBioPortal — NCBO's biomedical ontology repository (data.bioontology.org).
Tools
bioportal_searchSearch ~1,300 biomedical ontologies for a term and get back the matching classes with their preferred label, synonyms, definition, ontology and permanent class IRI. AUTHORITATIVE for mapping free text
No parameters required.
Try it
bioportal_ontologiesList the biomedical ontologies BioPortal carries — acronym, full name and type — so you can pick the right vocabulary acronym before searching or looking up a class. AUTHORITATIVE catalogue of what is
No parameters required.
Try it
bioportal_classFull record for one ontology class by its IRI — preferred label, every synonym, the curated definition, semantic types, obsolescence flag, and links to parents and children. AUTHORITATIVE for the cano
No parameters required.
Try it
bioportal_mappingsCross-ontology mappings for one class — the equivalent concepts in every other BioPortal ontology, with the mapping source (SAME_URI, LOOM, CUI, REST). AUTHORITATIVE for translating a code between ter
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/bioportal/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/bioportal/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"bioportal_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("bioportal_search", {});// Or ask in plain English:
const answer = await px.ask("bioportal — ncbo's biomedical ontology repository (data");