summary
Pack: wikiquote · Endpoint: https://gateway.pipeworx.io/wikiquote/mcp
Page summary.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | |
lang | string | no |
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":"summary","arguments":{"title":"Albert Einstein"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('summary', {
"title": "Albert Einstein"
});
More examples
{
"title": "Oscar Wilde",
"lang": "de"
}
Response shape
| Field | Type | Description |
|---|---|---|
title | string | Page title |
extract | string | Page summary text |
thumbnail | object | |
originalimage | object | |
lang | string | Language code |
dir | string | Text direction (ltr/rtl) |
revision | string | Revision ID |
lastmodified | string | Last modification date |
displaytitle | string | Display title |
Full JSON Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Page title"
},
"extract": {
"type": "string",
"description": "Page summary text"
},
"thumbnail": {
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "Image URL"
},
"width": {
"type": "number",
"description": "Image width in pixels"
},
"height": {
"type": "number",
"description": "Image height in pixels"
}
}
},
"originalimage": {
"type": "object",
"properties": {
"source": {
"type": "string",
"description": "Original image URL"
},
"width": {
"type": "number",
"description": "Image width in pixels"
},
"height": {
"type": "number",
"description": "Image height in pixels"
}
}
},
"lang": {
"type": "string",
"description": "Language code"
},
"dir": {
"type": "string",
"description": "Text direction (ltr/rtl)"
},
"revision": {
"type": "string",
"description": "Revision ID"
},
"lastmodified": {
"type": "string",
"description": "Last modification date"
},
"displaytitle": {
"type": "string",
"description": "Display title"
}
}
}
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.