get_scene
ActiveTool of Quotes
Return the full text of a specific scene from a play (every speech, every line, in order). Example: author_id="william-shakespeare", work_slug="hamlet", act=3, scene=1 returns the entire "To be, or not to be" scene including all of Hamlet's soliloquy and the subsequent dialogue with Ophelia. Useful for context, citation, or close reading.
Parameters schema
{
"type": "object",
"examples": [
{
"act": 3,
"scene": 1,
"author_id": "william-shakespeare",
"work_slug": "hamlet"
},
{
"act": 5,
"scene": 5,
"author_id": "william-shakespeare",
"work_slug": "macbeth"
},
{
"act": 1,
"scene": 1,
"author_id": "oscar-wilde",
"work_slug": "the-importance-of-being-earnest"
}
],
"required": [
"author_id",
"work_slug",
"act",
"scene"
],
"properties": {
"act": {
"type": "number",
"description": "Act number."
},
"scene": {
"type": "number",
"description": "Scene number."
},
"author_id": {
"type": "string",
"description": "Author id (e.g., \"william-shakespeare\")."
},
"work_slug": {
"type": "string",
"description": "Work slug (e.g., \"hamlet\")."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Quotes
https://github.com/pipeworx-io/mcp-quotes
2/7 registries