generate_paragraphs

Pack: lorem · Endpoint: https://gateway.pipeworx.io/lorem/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/generate_paragraphs for the schema, then POST the same URL with its arguments for the data.

Generate placeholder text paragraphs for mockups and layout testing. Returns plain text without formatting.

Parameters

NameTypeRequiredDescription
countnumberyesNumber of paragraphs to generate (1–10)
lengthstringyesLength 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

FieldTypeDescription
countnumberNumber of paragraphs generated
lengthstringLength of each paragraph
textstringFull plain text output
paragraphsarrayArray 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.

Regenerated from source · build September 22, 2026