search_quotes

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

Search quotes by substring. Matches both canonical text and known popular paraphrases — searching for ‘protest’ finds Hamlet’s ‘The lady doth protest too much, methinks’ even though the popular form ‘Methinks the lady doth protest too much’ is what most people remember.

Parameters

NameTypeRequiredDescription
querystringyesSubstring to search for (case-insensitive).
author_idstringnoOptional author filter.
verified_onlybooleannoIf true, exclude misattributed quotes.
limitnumbernoMax results to return (default 10, max 25).

Example call

Arguments

{
  "query": "all the world",
  "verified_only": true
}

curl

curl -X POST https://gateway.pipeworx.io/quotes/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_quotes","arguments":{"query":"all the world","verified_only":true}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_quotes', {
  "query": "all the world",
  "verified_only": true
});

More examples

{
  "query": "marriage",
  "author_id": "jane-austen"
}
{
  "query": "tomorrow"
}

Response shape

Always returns: query, count, quotes

FieldTypeDescription
querystringThe search query that was executed
countnumberTotal number of matching quotes
quotesarrayArray of matching quotes (up to limit)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query that was executed"
    },
    "count": {
      "type": "number",
      "description": "Total number of matching quotes"
    },
    "quotes": {
      "type": "array",
      "description": "Array of matching quotes (up to limit)"
    }
  },
  "required": [
    "query",
    "count",
    "quotes"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "quotes": {
      "url": "https://gateway.pipeworx.io/quotes/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026