image-gen-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@image-gen-mcpgenerate an image of a cat riding a skateboard"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
image-gen-mcp
Ever annoyed that Claude still can't create images (as of September 2026) or just wanted to integrate an API image generator to your personal chatbot?
This is a local (for now) MCP server that allows you to generate images inline with Claude using the Venice AI API endpoint.
Setup
Requirements
Python 3.12+
uv
A Venice AI API key (see this link)
Install
Clone this repository
Run
uv syncCreate a
.envfile, include a value calledVENICE_API_KEY, and set it equal to your Venice API key after you generate it (e.g.VENICE_API_KEY=<YOUR API KEY)
Connect to Claude Desktop
Refer to this source (use Ctrl+F or Cmd+F for Mac and search for
claude_desktop_config.json) to help find the directory to theclaude_desktop_config.jsonfile. It will differ depending on your operating system.Follow the example by accessing the
claude_desktop_config.jsonfile and modifying the values so they fit your system as follows:
{
"mcpServers": {
"image-gen-mcp": {
"command": "uv",
"args": [
"--directory",
"<ABSOLUTE-PATH-TO-PARENT-FOLDER>/image-gen-mcp",
"run",
"image-gen-mcp"
]
}
}
}What's Coming Up?
I currently plan on creating an additional endpoint to OpenAI and perhaps Gemini as well.
I also have plans to integrate this with LibreChat.
Available Tools
1 toolgenerate_imageA
Generate an image from a text description and display it in the conversation.
Use this whenever the user asks for an image, picture, illustration, drawing,
artwork, logo, or any visual to be created. Returns the generated image directly.
Args:
prompt: Detailed description of the image to generate.
model: Venice model id. Defaults to a fast model (z-image-turbo)
as other models can be slower.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It states that the image is displayed in the conversation, that the model defaults to z-image-turbo for speed, and that output is returned directly. It does not discuss failure modes or rate limits, but for a simple generation tool this is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with purpose, and includes a short Args block. There is some redundancy between 'display it in the conversation' and 'Returns the generated image directly,' but overall it is well organized and does not waste many words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-required-parameter tool the description covers purpose, usage, prompt semantics, and return behavior. The main gaps are the mentioned model parameter that is absent from the schema and the lack of any information about failure behavior or output format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds useful meaning for prompt: 'Detailed description of the image to generate,' which the bare schema does not provide. However, it also documents a 'model' argument that is not present in the input schema, making part of the Args guidance unreliable and potentially leading an agent to send an unsupported parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence names a specific verb and resource: 'Generate an image from a text description and display it in the conversation.' It is unambiguous and includes a clear list of trigger synonyms (image, picture, illustration, drawing, artwork, logo). Since there are no sibling tools, no sibling differentiation is required.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Use this whenever the user asks for an image, picture, illustration, drawing, artwork, logo, or any visual to be created.' This is direct when-to-use guidance. It also clarifies that the image is returned directly in the conversation, which helps the agent know what kind of result to expect.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
1 tool update
v0.1.0- First observed
generate_image
TDQS
Scored across 1 tool
With only one tool, there is no possibility of confusion. The tool's purpose is clear and distinct.
A single tool naturally follows a consistent naming pattern. The name 'generate_image' is clear and action-oriented.
The server has exactly one tool, which is thin for most servers but perfectly appropriate for a focused image generation service. It slightly under the typical 3-15 range but earns its place.
The tool covers the core functionality of generating an image from a text prompt. There are no dead ends; the requested operation is fully supported.
Maintenance
Related MCP Connectors
Generate AI images, videos, music, SFX & speech in any AI assistant. Results appear inline in chat.
Generate images with your own ChatGPT subscription (Plus, Pro or Team), without spending API credits
LLM chat, text tools, image generation, editing, batch image jobs, and asynchronous video generation
AI image + video generation for agents: --flag prompt DSL, async generate/poll, x402 pay-per-use.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables AI assistants to access Venice AI's capabilities including chat with open-source models, image generation, text-to-speech, embeddings, and API key management.1319 npm5MIT
- AlicenseNot gradedqualityDmaintenanceEnables text-only LLMs to analyze images by routing them to an OpenAI-compatible vision backend, supporting local files, URLs, and data URLs.11 npmMIT
- FlicenseNot gradedqualityDmaintenanceEnables generating images from text prompts using OpenAI's GPT-Image-2 model within Claude Code and Codex conversations.1-
- FlicenseBqualityDmaintenanceEnables LLM clients to generate, edit, and evaluate images through the Replicate API.4-