quote_of_the_day
Pack: wikiquote · Endpoint: https://gateway.pipeworx.io/wikiquote/mcp
Daily featured quote (English Wikiquote — lang=fr returns its locale equivalent where available).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lang | string | no |
Example call
Arguments
{
"lang": "en"
}
curl
curl -X POST https://gateway.pipeworx.io/wikiquote/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quote_of_the_day","arguments":{"lang":"en"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quote_of_the_day', {
"lang": "en"
});
More examples
{
"lang": "fr"
}
Response shape
| Field | Type | Description |
|---|---|---|
parse | object |
Full JSON Schema
{
"type": "object",
"properties": {
"parse": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Page title"
},
"pageid": {
"type": "number",
"description": "Page ID"
},
"text": {
"type": "string",
"description": "Parsed HTML text content"
},
"wikitext": {
"type": "string",
"description": "Raw wikitext content"
},
"parsetree": {
"type": "string",
"description": "Parse tree XML"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"wikiquote": {
"url": "https://gateway.pipeworx.io/wikiquote/mcp"
}
}
}
See Getting Started for client-specific install steps.