random_quote
Pack: zenquotes · Endpoint: https://gateway.pipeworx.io/zenquotes/mcp
Get a single random inspirational quote.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/zenquotes/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_quote","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_quote', {});
Response shape
Always returns: quote, author
| Field | Type | Description |
|---|---|---|
quote | string | The inspirational quote text |
author | string | The author of the quote |
Full JSON Schema
{
"type": "object",
"properties": {
"quote": {
"type": "string",
"description": "The inspirational quote text"
},
"author": {
"type": "string",
"description": "The author of the quote"
}
},
"required": [
"quote",
"author"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"zenquotes": {
"url": "https://gateway.pipeworx.io/zenquotes/mcp"
}
}
}
See Getting Started for client-specific install steps.