get_authors

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

Look up an author by name or slug (e.g., “albert-einstein”). Returns bio, description, and total quote count.

Parameters

NameTypeRequiredDescription
slugstringnoAuthor slug(s) to look up, e.g. “albert-einstein”. Supports pipe-separated values for multiple authors.
limitnumbernoNumber of authors to return (1–150, default 20)

Example call

Arguments

{
  "slug": "albert-einstein"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_authors', {
  "slug": "albert-einstein"
});

More examples

{
  "slug": "albert-einstein|mark-twain",
  "limit": 2
}

Response shape

FieldTypeDescription
okboolean
reasonstring
upstream_statusnumber
opstring
messagestring
hintstring
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean"
    },
    "reason": {
      "type": "string"
    },
    "upstream_status": {
      "type": "number"
    },
    "op": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "hint": {
      "type": "string"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 24, 2026