apology_generate
Pack: apology · Endpoint: https://gateway.pipeworx.io/apology/mcp
Generate a personalized apology for any situation. Specify sincerity level (e.g., “sincere”, “casual”, “formal”), who you’re apologizing to, and what happened. Returns tailored apology text ready to use.
Example call
Arguments
{
"offense": "I forgot your birthday and didn't call until a week later",
"relationship": "partner",
"sincerity": "genuine",
"medium": "in_person"
}
curl
curl -X POST https://gateway.pipeworx.io/apology/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"apology_generate","arguments":{"offense":"I forgot your birthday and didn'\''t call until a week later","relationship":"partner","sincerity":"genuine","medium":"in_person"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('apology_generate', {
"offense": "I forgot your birthday and didn't call until a week later",
"relationship": "partner",
"sincerity": "genuine",
"medium": "in_person"
});
More examples
{
"offense": "I missed the project deadline without giving advance notice",
"relationship": "boss",
"sincerity": "tactical",
"medium": "email"
}
Response shape
Always returns: apology
| Field | Type | Description |
|---|---|---|
apology | string | Generated personalized apology text |
Full JSON Schema
{
"type": "object",
"properties": {
"apology": {
"type": "string",
"description": "Generated personalized apology text"
}
},
"required": [
"apology"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"apology": {
"url": "https://gateway.pipeworx.io/apology/mcp"
}
}
}
See Getting Started for client-specific install steps.