linkedin_humblebrag_generate
Pack: linkedin-humblebrag · Endpoint: https://gateway.pipeworx.io/linkedin-humblebrag/mcp
Generate a humorous LinkedIn post from an achievement. Input your accomplishment and get back a self-deprecating post with vulnerability and humor. Returns the post text ready to share.
Example call
Arguments
{
"achievement": "Just got promoted to Senior Software Engineer after 5 years at the company"
}
curl
curl -X POST https://gateway.pipeworx.io/linkedin-humblebrag/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"linkedin_humblebrag_generate","arguments":{"achievement":"Just got promoted to Senior Software Engineer after 5 years at the company"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('linkedin_humblebrag_generate', {
"achievement": "Just got promoted to Senior Software Engineer after 5 years at the company"
});
More examples
{
"achievement": "Closed a $2M deal with our biggest client",
"spin": "vulnerable",
"include_lesson": true
}
Response shape
Always returns: post
| Field | Type | Description |
|---|---|---|
post | string | The generated humorous LinkedIn post text |
Full JSON Schema
{
"type": "object",
"properties": {
"post": {
"type": "string",
"description": "The generated humorous LinkedIn post text"
}
},
"required": [
"post"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"linkedin-humblebrag": {
"url": "https://gateway.pipeworx.io/linkedin-humblebrag/mcp"
}
}
}
See Getting Started for client-specific install steps.