search

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

Search Bioregistry for biological database prefixes by substring match against prefix name, title, or description (e.g. “gene ontology”). Returns up to limit matching prefix records.

Parameters

NameTypeRequiredDescription
querystringyes
limitnumberno

Example call

Arguments

{
  "query": "protein"
}

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":"search","arguments":{"query":"protein"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "protein"
});

More examples

{
  "query": "gene",
  "limit": 10
}

Response shape

Always returns: query, count, results

FieldTypeDescription
querystringThe search query
countnumberTotal number of matches
resultsarrayMatching prefix entries
Full JSON Schema
{
  "type": "object",
  "description": "Search results matching query",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query"
    },
    "count": {
      "type": "number",
      "description": "Total number of matches"
    },
    "results": {
      "type": "array",
      "description": "Matching prefix entries",
      "items": {
        "type": "object",
        "properties": {
          "prefix": {
            "type": "string",
            "description": "Prefix identifier"
          },
          "name": {
            "type": "string",
            "description": "Prefix name"
          },
          "description": {
            "type": "string",
            "description": "Prefix description"
          }
        }
      }
    }
  },
  "required": [
    "query",
    "count",
    "results"
  ]
}

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 July 6, 2026