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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Substring to search for (case-insensitive). |
author_id | string | no | Optional author filter. |
verified_only | boolean | no | If true, exclude misattributed quotes. |
limit | number | no | Max 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
| Field | Type | Description |
|---|---|---|
query | string | The search query that was executed |
count | number | Total number of matching quotes |
quotes | array | Array 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.