prefixes

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

Paginate over all prefixes.

Parameters

NameTypeRequiredDescription
limitnumberno
offsetnumberno

Example call

Arguments

{
  "limit": 20,
  "offset": 0
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('prefixes', {
  "limit": 20,
  "offset": 0
});

More examples

{
  "limit": 50,
  "offset": 100
}

Response shape

Always returns: total, prefixes

FieldTypeDescription
totalnumberTotal count of prefixes
prefixesarraySlice of prefix entries
Full JSON Schema
{
  "type": "object",
  "description": "Paginated list of all prefixes",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total count of prefixes"
    },
    "prefixes": {
      "type": "array",
      "description": "Slice of prefix entries",
      "items": {
        "type": "object",
        "description": "Prefix metadata object"
      }
    }
  },
  "required": [
    "total",
    "prefixes"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026