This is a Model Context Protocol (MCP) server that provides a tool for generating placeholder images from different providers.
- Generates placeholder images from supported providers
- Supports two image providers:
placehold
: Provides simple placeholder imageslorem-picsum
: Provides real images as placeholder images
- Validates input parameters
- Returns image URLs for immediate use
- Python 3.9+
uv
package manager
- Clone this repository
- Set up the configuration for MCP server
The server exposes one tool:
Generate a placeholder image URL based on specified parameters.
Parameters:
provider
: The image provider to use (placehold
orlorem-picsum
)width
: The width of the image (1-10000)height
: The height of the image (1-10000)
Returns:
- URL string of the generated image
Example Usage:
# Generate a 300x200 placeholder image
url = image_placeholder(provider="placehold", width=300, height=200)
# Generate a 500px square lorem-picsum image
url = image_placeholder(provider="lorem-picsum", width=500)
- Add the following to your
claude_desktop_config.json
:{ "mcpServers": { "image-placeholder": { "command": "uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/PROJECT", "run", "main.py" ] } } }
- Restart Claude for Desktop
- Open Cursor Settings
- Head to the
Features
section - Scroll down to the
MCP Servers
section - Click on the
Add new MCP server
button - Enter the following information:
- Name:
image-placeholder
- Type:
command
- Server URL:
uv --directory /ABSOLUTE/PATH/TO/PROJECT run main.py
- Name:
- Click on the
Add ↵
button
If the tool is not detected, use absolute path of the uv
command, e.g.
/ABSOLUTE/PATH/TO/uv --directory /ABSOLUTE/PATH/TO/PROJECT run main.py
Prompt:
Create a new directory named "example" and a file named output.html.
Then create a single modern looking page using tailwindcss: https://unpkg.com/@tailwindcss/browser@4
Show a nice header, content, and footer, showing a photo gallery.
Save this into output.html
Output: Example Output (Cursor)