Wraps the free Quotable API to search inspirational quotes by keyword or phrase. Exposes a single search_quotes tool that returns matching quotes with author attribution and topic tags. No authentication needed. Part of the Pipeworx gateway ecosystem, which means you can either use this standalone or access it alongside 250+ other data sources through their unified gateway. The ask_pipeworx interface lets you query in natural language instead of calling tools directly. Useful when you need to pull quotes programmatically for content generation, chatbots, or any app that benefits from curated wisdom without managing API keys or rate limits.
Quotable MCP — wraps Quotable API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search_quotes | Search quotes by keyword or phrase. Returns matching quotes with author names and topic tags. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"quotable": {
"url": "https://gateway.pipeworx.io/quotable/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Quotable data" })
The gateway picks the right tool and fills the arguments automatically.
MIT