shakespeare_insult_generate
Pack: shakespeare-insult · Endpoint: https://gateway.pipeworx.io/shakespeare-insult/mcp
Generate a Shakespearean insult. Classical mode (no target) uses authentic vocabulary. Targeted mode uses Haiku for bespoke devastation.
Example call
Arguments
{
"severity": "medium",
"recipient": "colleague",
"translate": true
}
curl
curl -X POST https://gateway.pipeworx.io/shakespeare-insult/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"shakespeare_insult_generate","arguments":{"severity":"medium","recipient":"colleague","translate":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('shakespeare_insult_generate', {
"severity": "medium",
"recipient": "colleague",
"translate": true
});
More examples
{
"target": "my project manager",
"severity": "devastating",
"recipient": "colleague",
"translate": false
}
Response shape
Always returns: insult
| Field | Type | Description |
|---|---|---|
insult | string | The generated Shakespearean insult |
translation | string | Modern English translation of the insult |
Full JSON Schema
{
"type": "object",
"properties": {
"insult": {
"type": "string",
"description": "The generated Shakespearean insult"
},
"translation": {
"type": "string",
"description": "Modern English translation of the insult"
}
},
"required": [
"insult"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"shakespeare-insult": {
"url": "https://gateway.pipeworx.io/shakespeare-insult/mcp"
}
}
}
See Getting Started for client-specific install steps.