list_full_text_works
Pack: quotes · Endpoint: https://gateway.pipeworx.io/quotes/mcp
List works for which the full text (every scene, speech, and line) is loaded — beyond just the famous-quote excerpts. Use this to discover what is available for deep structural lookup via get_scene and get_act.
Example call
Arguments
{}
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":"list_full_text_works","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_full_text_works', {});
Response shape
Always returns: works
| Field | Type | Description |
|---|---|---|
works | array | Array of works with full text available for scene/act/chapter lookup |
Full JSON Schema
{
"type": "object",
"properties": {
"works": {
"type": "array",
"description": "Array of works with full text available for scene/act/chapter lookup"
}
},
"required": [
"works"
]
}
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.