prefixes
Pack: bioregistry · Endpoint: https://gateway.pipeworx.io/bioregistry/mcp
Paginate over all prefixes.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | |
offset | number | no |
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
| Field | Type | Description |
|---|---|---|
total | number | Total count of prefixes |
prefixes | array | Slice 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.