search

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

Wikiquote title + fulltext search.

Parameters

NameTypeRequiredDescription
querystringyes
langstringno
limitnumberno1-50 (default 10)

Example call

Arguments

{
  "query": "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":"search","arguments":{"query":"Albert Einstein"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search', {
  "query": "Albert Einstein"
});

More examples

{
  "query": "wisdom and knowledge",
  "lang": "fr",
  "limit": 20
}

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayWikiquote search results
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Wikiquote search results",
      "items": {
        "type": "string"
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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