GnistAI GnistAI
Log in

Lorem Ipsum

Generate lorem ipsum placeholder text — paragraphs, sentences, or words for design and development.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Utilities

Data source: Built-in generator

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/lorem-ipsum/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-lorem-ipsum": {
      "url": "https://context.gnist.ai/mcp/lorem-ipsum/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/lorem-ipsum/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "report_feedback", "arguments": {"feedback": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/lorem-ipsum/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/lorem-ipsum/report_feedback?feedback=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/lorem-ipsum/report_feedback",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "feedback": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc lorem-ipsum

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

generate_lorem_paragraphs
Generate lorem ipsum placeholder paragraphs.
ParameterTypeRequiredDescription
countintegeroptionalNumber of paragraphs (1-100). (default: 3)
start_with_lorembooleanoptionalStart with the classic 'Lorem ipsum dolor sit amet...' opening. (default: true)
generate_lorem_sentences
Generate lorem ipsum placeholder sentences.
ParameterTypeRequiredDescription
countintegeroptionalNumber of sentences (1-500). (default: 5)
start_with_lorembooleanoptionalStart with the classic opening sentence. (default: true)
generate_lorem_words
Generate lorem ipsum placeholder words.
ParameterTypeRequiredDescription
countintegeroptionalNumber of words (1-5000). (default: 50)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related