list_quotes
Pack: zenquotes · Endpoint: https://gateway.pipeworx.io/zenquotes/mcp
Get a batch of 50 random inspirational quotes.
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":"list_quotes","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_quotes', {});
Response shape
Always returns: count, quotes
| Field | Type | Description |
|---|---|---|
count | integer | Number of quotes in the list |
quotes | array | Array of inspirational quotes |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Number of quotes in the list"
},
"quotes": {
"type": "array",
"description": "Array of inspirational quotes",
"items": {
"type": "object",
"properties": {
"quote": {
"type": "string",
"description": "The inspirational quote text"
},
"author": {
"type": "string",
"description": "The author of the quote"
}
},
"required": [
"quote",
"author"
]
}
}
},
"required": [
"count",
"quotes"
]
}
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.