Quotable
liveEntertainmentReferenceGet a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name.
Tools
random_quoteGet 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_quotesSearch quotes by keyword or phrase. Returns matching quotes with author names and topic tags.
No parameters required.
Try it
get_authorsLook up an author by name or slug (e.g., "albert-einstein"). Returns bio, description, and total quote count.
No parameters required.
Try it
list_tagsBrowse 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.
curl -X POST https://gateway.pipeworx.io/quotable/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("random_quote", {});// Or ask in plain English:
const answer = await px.ask("get a random quote, optionally filtered by tag (e");