browse

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

Browse entities of a type filtered by a related entity. e.g. browse editions by work, works by author.

Parameters

NameTypeRequiredDescription
typestringyesTarget entity type
authorstringnoAuthor bbid filter
workstringnoWork bbid filter
editionstringnoEdition bbid filter
publisherstringnoPublisher bbid filter
seriesstringnoSeries bbid filter
edition_groupstringnoedition-group bbid filter
limitnumberno1-25 (default 10)
offsetnumberno0-based offset

Example call

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

Response shape

FieldTypeDescription
countintegerTotal number of results
offsetintegerOffset used in the query
entitiesarrayArray of entities matching browse filter
Full JSON Schema
{
  "type": "object",
  "description": "Browsed entities filtered by related entity",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of results"
    },
    "offset": {
      "type": "integer",
      "description": "Offset used in the query"
    },
    "entities": {
      "type": "array",
      "description": "Array of entities matching browse filter",
      "items": {
        "type": "object",
        "description": "Entity with bbid, type, and metadata"
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026