generate_paragraphs
Pack: lorem · Endpoint: https://gateway.pipeworx.io/lorem/mcp
Generate placeholder text paragraphs for mockups and layout testing. Returns plain text without formatting.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count | number | yes | Number of paragraphs to generate (1–10) |
length | string | yes | Length of each paragraph: short, medium, long, or verylong |
Example call
Arguments
{
"count": 3,
"length": "medium"
}
curl
curl -X POST https://gateway.pipeworx.io/lorem/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"generate_paragraphs","arguments":{"count":3,"length":"medium"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('generate_paragraphs', {
"count": 3,
"length": "medium"
});
More examples
{
"count": 5,
"length": "long"
}
Response shape
Always returns: count, length, text, paragraphs
| Field | Type | Description |
|---|---|---|
count | number | Number of paragraphs generated |
length | string | Length of each paragraph |
text | string | Full plain text output |
paragraphs | array | Array of individual paragraphs |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of paragraphs generated"
},
"length": {
"type": "string",
"enum": [
"short",
"medium",
"long",
"verylong"
],
"description": "Length of each paragraph"
},
"text": {
"type": "string",
"description": "Full plain text output"
},
"paragraphs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of individual paragraphs"
}
},
"required": [
"count",
"length",
"text",
"paragraphs"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"lorem": {
"url": "https://gateway.pipeworx.io/lorem/mcp"
}
}
}
See Getting Started for client-specific install steps.