quotes

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

Extract sourced quotation items from a page.

Parameters

NameTypeRequiredDescription
titlestringyes
langstringno
limitnumbernoMax 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

FieldTypeDescription
titlestringPage title
langstringLanguage code
countnumberNumber of quotes extracted
quotesarrayArray 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.

Regenerated from source · build July 6, 2026