bioportal_class

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

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

Full 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 canonical meaning of a coded concept. Pass the ontology acronym and the class IRI exactly as bioportal_search returned it.

Parameters

NameTypeRequiredDescription
ontologystringyesOntology acronym (e.g. “NCIT”)
class_idstringyesFull class IRI as returned by bioportal_search, e.g. “http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C3224

Example call

Arguments

{
  "ontology": "NCIT",
  "class_id": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C3224"
}

curl

curl -X POST https://gateway.pipeworx.io/bioportal/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bioportal_class","arguments":{"ontology":"NCIT","class_id":"http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C3224"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bioportal_class', {
  "ontology": "NCIT",
  "class_id": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#C3224"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026