WebMCP Registry

lorem_ipsum

verifiedv0.1

Generates lorem ipsum placeholder text in the browser (paragraphs, sentences, words, or a list). Pass optional unit, count (1–200), startWithLorem, format, and seed (1–200 chars, default lorem). The same seed always yields the same text — pass another seed for different text. Variant URLs are not a second machine Tool — pass unit and format explicitly. Do not use this to clean or rewrite prose (that is text_cleaner).

Updated 9/3/2026 · Created 9/3/2026

Input Schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "seed": {
      "type": "string",
      "default": "lorem",
      "maxLength": 200,
      "minLength": 1
    },
    "unit": {
      "enum": [
        "paragraphs",
        "sentences",
        "words",
        "list"
      ],
      "type": "string",
      "default": "paragraphs"
    },
    "count": {
      "type": "integer",
      "default": 5,
      "maximum": 200,
      "minimum": 1
    },
    "format": {
      "enum": [
        "text",
        "html"
      ],
      "type": "string",
      "default": "text"
    },
    "startWithLorem": {
      "type": "boolean",
      "default": true
    }
  },
  "additionalProperties": false
}

Full Contract

{
  "name": "lorem_ipsum",
  "description": "Generates lorem ipsum placeholder text in the browser (paragraphs, sentences, words, or a list). Pass optional unit, count (1–200), startWithLorem, format, and seed (1–200 chars, default lorem). The same seed always yields the same text — pass another seed for different text. Variant URLs are not a second machine Tool — pass unit and format explicitly. Do not use this to clean or rewrite prose (that is text_cleaner).",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "seed": {
        "type": "string",
        "default": "lorem",
        "maxLength": 200,
        "minLength": 1
      },
      "unit": {
        "enum": [
          "paragraphs",
          "sentences",
          "words",
          "list"
        ],
        "type": "string",
        "default": "paragraphs"
      },
      "count": {
        "type": "integer",
        "default": 5,
        "maximum": 200,
        "minimum": 1
      },
      "format": {
        "enum": [
          "text",
          "html"
        ],
        "type": "string",
        "default": "text"
      },
      "startWithLorem": {
        "type": "boolean",
        "default": true
      }
    },
    "additionalProperties": false
  }
}

GET /api/tool/simpletoolstack.com/lorem_ipsum