Lorem

live Utilities

Generate lorem ipsum placeholder text and HTML via loripsum.net

2 tools
0ms auth
free tier 50 calls/day

Tools

generate_paragraphs required: count, length

Generate lorem ipsum placeholder text as plain paragraphs. Strips all HTML tags from the response.

Parameters
Name Type Description
count req number Number of paragraphs to generate (1–10)
length req string Length of each paragraph: short, medium, long, or verylong
Try it
generate_with_options required: count, length

Generate lorem ipsum HTML with optional headers, code blocks, unordered lists, and ordered lists.

Parameters
Name Type Description
count req number Number of paragraphs to generate (1–10)
length req string Length of each paragraph
headers opt boolean Include random headers (h1–h6)
code opt boolean Include code blocks
unordered_lists opt boolean Include unordered (bullet) lists
ordered_lists opt boolean Include ordered (numbered) lists
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/lorem/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/lorem/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"generate_paragraphs","arguments":{"count": 5, "length": "example"}}}'