Supports automated testing through GitHub Actions, as mentioned in the testing section of the README.
Supports installation and distribution through npm, allowing the package to be installed globally or run directly with npx.
lorem-ipsum-mcp
An lorem ipsum MCP server
Installation
Install the package globally with npm:
Or run directly with npx:
Usage
The MCP server runs on stdio and is designed to be used as a Model Context Protocol server:
The HTTP server runs on http://localhost:3001
with the SSE endpoint at http://localhost:3001/sse
.
Testing
This project includes comprehensive automated testing using GitHub Actions. For detailed testing information, see docs/TESTING.md.
Available Tools
image
Generate or fetch images from picsum.photos with various options.
Usage Examples:
- Get URL for a random 200x300 image:
image --width 200 --height 300
- Get image file for a random 200x300 image:
image --width 200 --height 300 --output file
- Get URL for a specific, grayscaled, and blurred image:
image --id 870 --grayscale --blur 2 --width 200 --height 300
- List available images:
image --list --page 2 --limit 50
- Get metadata for a specific image:
image --info --id 0
Parameters:
--width
(integer): The width of the image in pixels--height
(integer): The height of the image in pixels--id
(string): The ID of a specific image to retrieve--seed
(string): A seed for generating a static random image--grayscale
(boolean): Apply grayscale filter to the image--blur
(integer 1-10): Apply blur filter with specified radius--format
(jpg|webp): Image format--output
(url|file): Output type - url returns string URL, file returns binary data (default: url)--list
(boolean): Fetch list of available images--page
(integer): Page number for list results--limit
(integer): Number of results per page for list--info
(boolean): Fetch metadata for a specific image
Tools
A Model Context Protocol server that enables image generation and retrieval from picsum.photos with customizable parameters like dimensions, filters, and output formats.
Related MCP Servers
- AsecurityFlicenseAqualityA Model Context Protocol server that provides image generation capabilities using the Ideogram API, allowing users to create images from text prompts with customizable parameters.Last updated -184TypeScript
- AsecurityFlicenseAqualityA Model Context Protocol server that provides an image generation tool using Templated.io, allowing users to create customized images based on templates with text and image layers.Last updated -TypeScript
- AsecurityAlicenseAqualityA Model Context Protocol server that extracts images from URLs or base64 data and converts them into a format suitable for LLM analysis, allowing AI models to process and understand visual content.Last updated -32939MIT License
- AsecurityAlicenseAqualityA Model Context Protocol server that enables fetching and processing images from URLs, local file paths, and numpy arrays, returning them as base64-encoded strings with proper MIME types.Last updated -16PythonMIT License