Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Imaginate

FreeNot checked

MCP server that expands rough ideas into detailed image prompts via LangChain and generates images using the Hugging Face Inference API.

GitHubEmbed

About

MCP server that expands rough ideas into detailed image prompts via LangChain and generates images using the Hugging Face Inference API.

README

Turn a rough idea into a generated image — a LangChain prompt-enhancement chain expands your casual description into a detailed image prompt, which is then sent to a text-to-image model. Also exposed as an MCP tool, so any MCP-compatible AI agent (e.g. Claude Desktop) can call it directly.

How it works

User idea ("a cat astronaut")
        │
        ▼
  LangChain LCEL chain (Gemini)   →  expands into a detailed, styled prompt
        │
        ▼
  Hugging Face Inference API      →  generates the actual image
        │
        ▼
  Streamlit UI  /  MCP tool call  →  shown to the user or returned to the agent

Project Structure

imaginate/
├── src/
│   ├── prompt_chain.py     # LangChain LCEL: rough idea -> detailed prompt
│   ├── image_gen.py        # Hugging Face Inference API call
│   └── mcp_server.py       # Exposes generate_image_tool as an MCP tool
├── app/
│   └── streamlit_app.py    # UI
├── outputs/                 # generated images land here
├── .env.example
├── .gitignore
├── requirements.txt
└── README.md

Setup

  1. Install dependencies:

    pip install -r requirements.txt
    
  2. Copy .env.example to .env and fill in your keys:

    GOOGLE_API_KEY=your_gemini_api_key
    HF_API_KEY=your_huggingface_token
    

Run the Streamlit app

streamlit run app/streamlit_app.py

Run as an MCP server

python src/mcp_server.py

To connect this to Claude Desktop, add this to your Claude Desktop MCP config (claude_desktop_config.json):

{
  "mcpServers": {
    "imaginate": {
      "command": "python",
      "args": ["/absolute/path/to/imaginate/src/mcp_server.py"]
    }
  }
}

Restart Claude Desktop, and you'll be able to ask it to generate an image using the imaginate tool directly.

Author

Vansh LinkedIn | GitHub | LeetCode

from github.com/vanshgurawalia/Imaginate

Installing Imaginate

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/vanshgurawalia/Imaginate

FAQ

Is Imaginate MCP free?

Yes, Imaginate MCP is free — one-click install via Unyly at no cost.

Does Imaginate need an API key?

No, Imaginate runs without API keys or environment variables.

Is Imaginate hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Imaginate in Claude Desktop, Claude Code or Cursor?

Open Imaginate on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Imaginate with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All media MCPs