prefixes

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

Paginate over all prefixes.

Parameters

NameTypeRequiredDescription
limitnumberno
offsetnumberno

Example call

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":{}}}'

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 May 21, 2026