streamable-httpMITupdated 12d ago
Local MCP server that wraps the Imagcon API so assistants can generate PWA icon sets (all sizes, maskable assets, manifest.json) and iOS splash screens without opening the site. Runs as a stdio process via uvx — no hosted service dependency, no persistent connections.
What can you do with Imagcon?
imagcon-mcp
Local MCP server that wraps the Imagcon API so assistants can generate PWA icon sets (all sizes, maskable assets, manifest.json) and iOS splash screens without opening the site. Runs as a stdio process via uvx — no hosted service dependency, no persistent connections.
Requirements
- Python 3.11–3.12
- uv (provides
uvx) - An Imagcon API key starting with
ic_live_from imagcon.app/api-keys
Install
The package is self-hosted (not on PyPI). Install directly from the wheel:
claude mcp add imagcon -- uvx --from https://imagcon.app/downloads/imagcon_mcp-0.3.0-py3-none-any.whl imagcon-mcp --api-key ic_live_...
Or with the key in the environment instead of on the command line:
claude mcp add imagcon -- uvx --from https://imagcon.app/downloads/imagcon_mcp-0.3.0-py3-none-any.whl imagcon-mcp
export IMAGCON_API_KEY=ic_live_...
For other MCP clients (Cursor, Windsurf, VS Code, Cline, Zed, Warp, Continue.dev), use the equivalent stdio config:
{
"mcpServers": {
"imagcon": {
"command": "uvx",
"args": ["--from", "https://imagcon.app/downloads/imagcon_mcp-0.3.0-py3-none-any.whl", "imagcon-mcp", "--api-key", "ic_live_..."]
}
}
}
Per-client config file locations and full examples: see CLIENT-CONFIGS in imagcon.app/.well-known/blueprint.txt.
Tools
Images
generate_image— AI-generate a source image from a text description. Returnsimage_keyand a preview URL. Show the preview to the user and confirm before generating icons.save_image— Save a generated image to your gallery byimage_keyandname.list_saved_images— List all saved source images with keys and preview URLs.create_icons_from_key— Generate a PWA install pack from an already-savedimage_key. Returnshtml_head+ a signed ZIP URL; local stdio also extracts tooutput_dir(default./).install_pwa_pack— Same builder ascreate_icons_from_key. Splash is a second credit and defaults to false.
Icon sets
generate_pwa_icons— AI-generate a source image, then a droppablepublic/tree. Extract tooutput_dir(default./). Do not pass./public/icons— that nests.create_pwa_icons_from_image— Same PWA pipeline from an existing local PNG/JPEG/WebP atimage_path(no AI generation).list_saved_icon_sets— List saved icon sets with IDs.download_icon_set— Download a saved icon set ZIP byset_id, extract tooutput_dir.get_icon_set_download_url— Get an authenticated download URL for a saved icon set ZIP byset_id.
Splash screens
generate_splash_screens— AI-generate a source image and produce 16 iOS splash screens, extract tooutput_dir(default./public/splash).create_splash_screens_from_image— Same splash pipeline from an existing local PNG/JPEG/WebP atimage_path(no AI generation).create_splash_screens_from_key— Same splash pipeline from an existingimage_key(e.g. fromgenerate_imageorlist_saved_images) — composites the icon on each canvas size without re-generating.download_splash_screens— Download a saved splash screen set ZIP byset_id, extract tooutput_dir.get_splash_screen_download_url— Get an authenticated download URL for a saved splash screen set ZIP byset_id.
Account
get_credit_balance— Returns remaining Imagcon credits.setup_wallet_profile— Activate a permanent Imagcon account after a pay-per-call x402 payment. Pass wallet address, profile token fromX-Imagcon-Token, name,terms_confirmed(after reading https://imagcon.app/terms-of-service), and a wallet signature overimagcon.app/profile/activate:{profile_token}:{unix_timestamp}.
AI image generation (generate_image, generate_pwa_icons, generate_splash_screens) and icon/splash set exports use credits. create_pwa_icons_from_image, create_splash_screens_from_image, create_splash_screens_from_key, and create_icons_from_key skip AI generation credits but still charge for export.
Configuration
| Source | Variable / flag |
|---|---|
| Environment | IMAGCON_API_KEY |
| CLI | --api-key (overrides the env var) |
If the key is missing, the process exits with an error pointing to imagcon.app/api-keys.
API base URL
All requests go to https://imagcon.app (no other base URL is supported).
Install
Add Imagcon to your client. Pick the one you use.
claude mcp add --transport http imagcon https://mcp.imagcon.app/codex mcp add imagcon --url https://mcp.imagcon.app/{
"mcpServers": {
"imagcon": {
"url": "https://mcp.imagcon.app/"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"imagcon": {
"type": "http",
"url": "https://mcp.imagcon.app/"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"imagcon": {
"url": "https://mcp.imagcon.app/"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"imagcon": {
"serverUrl": "https://mcp.imagcon.app/"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.2.5Latest | Aug 2, 2026 |
| 0.2.4 | Aug 2, 2026 |