Easel
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., "@EaselGenerate an image of a serene mountain lake at dawn"
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.
Easel
A local, human-in-the-loop MCP server that bridges an AI agent to Higgsfield's web image generator. The agent asks for an image; a human generates it by hand in the Higgsfield web UI and pastes the result back through a small dashboard; the agent picks it up by polling. Nothing is generated automatically — this is a manual bridge so you can use your Higgsfield web subscription and features.
AI agent ──request_image_generation──▶ [ bridge daemon ] ──live──▶ 🧑 dashboard (localhost)
│ │ │ copy prompt
│ (does other work, then polls) │ SQLite queue │ generate in Higgsfield
◀──────get_image_result (long-poll)───────┤ │ paste result back
image ◀─────────────────┴─────────────────────────┘ Mark completeHow it works (the agent's contract)
The agent calls
request_image_generationwith a prompt + context. It returns ajob_idimmediately — it never blocks, and never returns an image.The agent goes off and does other work, then polls
get_image_result(job_id)every 5–10s. That call long-polls (holds up to ~25s waiting for a change), so loose polling is cheap and a "call once" agent still tends to catch the result.You (the human) see the request appear live on the dashboard, copy the prompt, open Higgsfield, generate the image, and paste / drag / upload it back, then Mark complete. You can also Reject with a reason (the agent sees it and can rephrase) or Dismiss (cancel).
The next poll returns the image as an absolute file path and, for images under ~1 MB, an inline MCP image content block the agent can see directly.
This process is written into every tool's description, so the calling agent knows to stay non-blocking and poll.
Related MCP server: ComfyUI MCP
Requirements
Node.js ≥ 22 (uses the built-in
node:sqlite; 24+ recommended). It will refuse to start on older Node with a clear message.macOS gets a native desktop notification on each new request; every platform also logs a clickable dashboard URL to the daemon's terminal.
Install & build
cd ~/easel
npm install
npm run buildRun the daemon
Start it once and leave it running (it must outlive individual agent sessions so the queue and dashboard survive):
npm start
# Dashboard: http://127.0.0.1:7391/
# MCP (http): http://127.0.0.1:7391/mcpOpen the dashboard in a browser and keep the tab around (click Enable alerts for desktop notifications). If you forget to start the daemon, the agent's tool calls fail with a plain connection error — start it and retry.
Register it with your MCP client
Add to your client's MCP config (e.g. .mcp.json for Claude Code):
{
"mcpServers": {
"easel": { "type": "http", "url": "http://127.0.0.1:7391/mcp" }
}
}MCP tools
Tool | What it does |
| Enqueue a request; returns a |
| Poll a |
| Cancel a queued/in-progress request (idempotent). |
| List jobs (defaults to |
Configuration (env vars)
Var | Default | Meaning |
|
| Port for both the dashboard and the MCP endpoint. On conflict the daemon exits (0 if it's already this bridge, 1 if a foreign process). |
|
| Where |
Design notes
One process, one port serves the MCP endpoint (
/mcp, stateful Streamable HTTP), the dashboard (/), its API (/api/*), a live SSE stream (/events), and stored images (/files/*, path-traversal-guarded). Bound to127.0.0.1with a Host-header check.State lives only in SQLite, keyed by job id (not MCP session) — multiple agent sessions share one queue. On restart, any
in_progressjob is reset toqueued(no human is mid-work after a crash).Images: returned by absolute path always; inline base64 / MCP image blocks only under a ~1 MB cap so a huge PNG can't blow up the agent's context. The dashboard normalizes pasted/dropped images (canvas resize to ≤2048px) before upload.
Security
This is a single-user local tool. It binds to 127.0.0.1 and checks the Host
header; there is no authentication, so don't expose the port to a network. It
guards against path traversal, secret exfiltration via reference images (only real
image files are accepted), SSRF via reference URLs (public http(s) only), and
osascript injection. See SECURITY.md for the full threat model and
how to report issues.
Dev
npm run dev— rebuild on change and restart the daemon.npm run typecheck—tsc --noEmit(strict).npm start— run the built daemon.
The scripts/ folder has two helpers (start the daemon first; both honor EASEL_PORT):
node scripts/smoke.mjs— end-to-end MCP round-trip + security-guard test.node scripts/seed.mjs— populate the dashboard with a few sample jobs to eyeball the UI.
See CONTRIBUTING.md to contribute.
License
MIT © pradeexsu
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Qwen Image 3 AI image generation
MCP server for Flux AI image generation
Focused MCP server for OpenAI image/audio generation (v2.0.0). Wraps endpoints via HAPI CLI.
MCP server for visual regression testing: triage a PR's UI diffs from your coding agent.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for AI image generation supporting multiple providers (OpenRouter, Together AI, Replicate, fal.ai) and compatible with various MCP agents.231 npm1MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that connects local ComfyUI to AI agents, enabling natural language control of ComfyUI for creating workflows, generating images, and managing the queue.-
- AlicenseAqualityDmaintenanceMCP server that provides image generation, captioning, and tagging via ComfyUI API, configurable for agent tools.43MIT
- AlicenseNot gradedqualityBmaintenanceLocal MCP server that routes image-generation requests to xAI/Grok, Antigravity, and OpenAI Codex with ordered fallback, a local Playground, and an OpenAI-compatible image endpoint.4MIT