ImageGen MCP

ImageGen MCP

Free, keyless image generation MCP server that lets AI agents create images from text prompts via Pollinations/Flux. Supports multiple aspect ratios and returns local image file paths.

Category
Visit Server

README

ImageGen MCP

no-api-key-required free privacy-first mcp

Free, keyless image generation for any MCP-enabled AI agent. Give your assistant the ability to create images from text prompts — with no API key, no billing, and no account setup.

What it gives you

  • One MCP tool: generate_image — text prompt in, local image file out. Also health for readiness checks.
  • Zero configuration — no API keys, no accounts, no cost. The provider is Pollinations (Flux), a free community text-to-image service.
  • Five aspect ratios1:1, 3:4, 4:3, 9:16, 16:9 (default 1:1).
  • Local-first output — images are saved to disk and returned as file paths; nothing is uploaded to a third party beyond the image request itself.
  • Defensive by design — prompt length limits, output-dir writability checks, and structured {ok, ...} / {ok: false, error} responses for clean agent error handling.

See it in action

Real outputs generated with this server (Pollinations / Flux, no API key, no post-processing):

16:9 — rainy city car

1:1 — mountain lake sunrise

9:16 — rooftop robot gardener

4:3 — product shot

Every image above was produced by a single generate_image call with just a text prompt and an aspect ratio.

How it works

AI agent → MCP tool generate_image(prompt, aspect_ratio) → Pollinations API → local image file → path returned to agent

The server speaks the Model Context Protocol (stdio transport) and uses FastMCP, so it plugs into any MCP host — including Hermes, Claude Desktop, or custom agent frameworks.

Installation

pip install -r requirements.txt   # installs mcp
python imagegen_mcp_server.py      # runs the MCP server over stdio

Or register it as a stdio MCP server in your host. Example (Hermes config):

mcp_servers:
  imagegen:
    command: /path/to/python
    args:
      - /path/to/imagegen_mcp_server.py
    enabled: true
    trust: full

Usage

Call the generate_image tool from your agent:

generate_image(prompt="a red sports car in a rainy city at night", aspect_ratio="16:9")

Returns on success:

{
  "ok": true,
  "path": "/home/user/gemini-image-mcp/output/img_20260816_222542_42026.jpeg",
  "mime_type": "image/jpeg",
  "size_bytes": 53907,
  "aspect_ratio": "16:9",
  "provider": "pollinations",
  "message": "image saved to /home/user/gemini-image-mcp/output/img_20260816_222542_42026.jpeg"
}

Options

Argument Default Notes
prompt — (required) Text description, max 2000 chars
aspect_ratio 1:1 One of 1:1, 3:4, 4:3, 9:16, 16:9
output_dir env or ~/gemini-image-mcp/output Where the image is saved; override per-call or via IMAGE_MCP_OUTPUT_DIR

Notes & limitations

  • Pollinations is a free community service — no SLA. Expect occasional slowness or brief downtime; fine for casual/prototyping use, not for a production dependency.
  • The endpoint blocks default HTTP client user-agents (403), so the server sends a real browser User-Agent header.
  • Each image is roughly 20–65 KB, so storage stays negligible.

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured