lookup

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

Fetch a single entity by BookBrainz UUID (bbid).

Parameters

NameTypeRequiredDescription
typestringyeswork | edition | author | publisher | series | edition-group
bbidstringyesBookBrainz UUID
includesstringnoComma-sep optional sub-resources (aliases, relationships, identifiers, …)

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

Response shape

FieldTypeDescription
bbidstringBookBrainz unique identifier
typestringEntity type (work, edition, author, etc.)
namestringPrimary name of the entity
aliasesarrayAlternative names for the entity
relationshipsarrayRelated entities and relationships
identifiersarrayExternal identifiers (ISBN, etc.)
Full JSON Schema
{
  "type": "object",
  "description": "Single entity details from BookBrainz",
  "properties": {
    "bbid": {
      "type": "string",
      "description": "BookBrainz unique identifier"
    },
    "type": {
      "type": "string",
      "description": "Entity type (work, edition, author, etc.)"
    },
    "name": {
      "type": "string",
      "description": "Primary name of the entity"
    },
    "aliases": {
      "type": "array",
      "description": "Alternative names for the entity",
      "items": {
        "type": "object"
      }
    },
    "relationships": {
      "type": "array",
      "description": "Related entities and relationships",
      "items": {
        "type": "object"
      }
    },
    "identifiers": {
      "type": "array",
      "description": "External identifiers (ISBN, etc.)",
      "items": {
        "type": "object"
      }
    }
  }
}

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