quotes
Pack: wikiquote · Endpoint: https://gateway.pipeworx.io/wikiquote/mcp
Extract sourced quotation items from a page.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | |
lang | string | no | |
limit | number | no | Max quotes returned (default 50) |
Example call
Arguments
{
"title": "Albert Einstein"
}
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":"quotes","arguments":{"title":"Albert Einstein"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quotes', {
"title": "Albert Einstein"
});
More examples
{
"title": "Maya Angelou",
"limit": 25
}
Response shape
Always returns: title, lang, count, quotes
| Field | Type | Description |
|---|---|---|
title | string | Page title |
lang | string | Language code |
count | number | Number of quotes extracted |
quotes | array | Array of extracted quotes |
Full JSON Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Page title"
},
"lang": {
"type": "string",
"description": "Language code"
},
"count": {
"type": "number",
"description": "Number of quotes extracted"
},
"quotes": {
"type": "array",
"description": "Array of extracted quotes",
"items": {
"type": "object",
"properties": {
"quote": {
"type": "string",
"description": "The quotation text"
},
"attribution": {
"type": "string",
"description": "Source or attribution of the quote"
}
},
"required": [
"quote"
]
}
}
},
"required": [
"title",
"lang",
"count",
"quotes"
]
}
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.