summary

Pack: wikiquote · Endpoint: https://gateway.pipeworx.io/wikiquote/mcp

Page summary.

Parameters

NameTypeRequiredDescription
titlestringyes
langstringno

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

FieldTypeDescription
titlestringPage title
extractstringPage summary text
thumbnailobject
originalimageobject
langstringLanguage code
dirstringText direction (ltr/rtl)
revisionstringRevision ID
lastmodifiedstringLast modification date
displaytitlestringDisplay 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.

Regenerated from source · build July 6, 2026