list_ontologies

Pack: ebi-ols · Endpoint: https://gateway.pipeworx.io/ebi-ols/mcp

List loaded ontologies (paginated).

Parameters

NameTypeRequiredDescription
sizenumberno1-500 (default 20).
pagenumberno0-based page (default 0).

Example call

Arguments

{
  "size": 20,
  "page": 0
}

curl

curl -X POST https://gateway.pipeworx.io/ebi-ols/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_ontologies","arguments":{"size":20,"page":0}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_ontologies', {
  "size": 20,
  "page": 0
});

More examples

{
  "size": 100,
  "page": 1
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Paginated list of loaded ontologies from EBI OLS4"
}

Connect

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

{
  "mcpServers": {
    "ebi-ols": {
      "url": "https://gateway.pipeworx.io/ebi-ols/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026