today_quote
Pack: zenquotes · Endpoint: https://gateway.pipeworx.io/zenquotes/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/today_quote for the schema, then POST the same URL with its arguments for the data.
Get the quote of the day from ZenQuotes. Returns the same quote for all requests within a given day.
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":"today_quote","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('today_quote', {});
Response shape
Always returns: quote, author
| Field | Type | Description |
|---|---|---|
quote | string | The quote of the day text |
author | string | The author of the quote |
Full JSON Schema
{
"type": "object",
"properties": {
"quote": {
"type": "string",
"description": "The quote of the day 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.