Image Generator MCP Server
Generate placeholder images with specified dimensions and colors, and save them to a file path.
Image Generator MCP Server
A Model Context Protocol (MCP) server that generates test images with customizable width, height, and color. Saves images as PNG files to specified file paths.
Features
- Generate test images with specified dimensions (1-4096 pixels)
- Support for hex color format (e.g., #FF0000, #f00)
- Automatic text overlay showing image dimensions
- Optional custom label text displayed in the top-left corner
- Smart contrast color selection for readable text
- Saves images as PNG files to specified file paths
- Automatically creates directories if they don't exist
Installation
- Clone or download this repository
- Install dependencies:
npm install
- Build the server:
npm run build
- Add the server to your MCP configuration:
For VSCode:
{
"servers": {
"Image Placeholder Gen": {
"type": "stdio",
"command": "node",
"args": [
"~/mcp_servers/image-gen/build/index.js"
]
}
}
}
For Claude Desktop:
{
"mcpServers": {
"image-gen": {
"command": "node",
"args": ["/path/to/image-gen/build/index.js"]
}
}
}
Usage
The server provides one tool:
generate_test_image
Generate a test image with specified parameters.
Parameters:
width(number): Width of the image in pixels (1-4096)height(number): Height of the image in pixels (1-4096)color(string): Color of the image as hex code (e.g., #FF0000 or #f00)filepath(string): Full path where the PNG image should be savedlabel(string, optional): Custom text to display in the top-left corner of the image
Example:
{
"name": "generate_test_image",
"arguments": {
"width": 400,
"height": 300,
"color": "#3498db",
"filepath": "/tmp/test_image.png",
"label": "My Custom Label"
}
}
Returns:
- Text confirmation that the image was successfully generated and saved
Color Format
The tool supports hex color format:
- Hex colors:
#FF0000,#f00
Testing
Run the test script to verify the server works:
npm run build
npm test
Dependencies
- Node.js canvas library for image generation
- Model Context Protocol SDK
Notes
- Maximum image dimensions are capped at 4096x4096 pixels for performance
- Generated images include dimension text overlay for easy identification
- Text color is automatically chosen for optimal contrast against the background
- The server automatically creates directories if they don't exist in the specified file path
Contributing
Feel free to submit issues and enhancement requests!
Verwandte Server
Scout Monitoring MCP
SponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
SponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
mcp-graphql
A GraphQL server that supports the Model Context Protocol (MCP), enabling Large Language Models (LLMs) to interact with GraphQL APIs through schema introspection and query execution.
Rippling MCP Server
Rippling HR/IT/Finance platform integration with 18 tools for managing employees, departments, payroll, benefits, time tracking, and company operations.
Remote MCP Server Kindler
A template for deploying a remote MCP server without authentication on Cloudflare Workers.
Honeybadger
Interact with the Honeybadger API for error and uptime monitoring.
ask-gemini-mcp
MCP server that enables AI assistants to interact with Google Gemini CLI
CodeVF MCP
CodeVF MCP lets AI hand off problems to real engineers instantly, so your workflows don’t stall when models hit their limits.
amCharts 5 MCP Server
MCP server that gives AI assistants on-demand access to 1,500+ amCharts docs, ~300 code examples, and 1000+ class API references.
Cloudflare Logging
A server for logging, deployable as a Cloudflare Worker.
Codacy
Access the Codacy API to analyze code quality, coverage, and security for your repositories.
MCP_Agent:RE
Fetches requirements and defect data from the TAPD platform to provide data support for AI clients.