Quotable

live ReferenceQuotes

Get a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name.

4 tools
0ms auth
free tier 50 calls/day

Tools

random_quote

Get a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name. Returns quote text, author, and tags.

No parameters required.

Try it
search_quotes

Search quotes by keyword or phrase. Returns matching quotes with author names and topic tags.

No parameters required.

Try it
get_authors

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

No parameters required.

Try it
list_tags

Browse all available quote tags sorted by popularity. Use returned tags with random_quote to filter by topic.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/quotable/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/quotable/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"random_quote","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("random_quote", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("get a random quote, optionally filtered by tag (e");

Related packs

Other Pipeworx packs in the same categories (Reference, Quotes):