Back to Browse

Imagcon MCP Server

Developer ToolsUse Caution4.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Generate PWA icon sets and iOS splash screens from a text prompt or an existing image.

About

Generate PWA icon sets and iOS splash screens from a text prompt or an existing image.

Remote endpoints: streamable-http: https://mcp.imagcon.app/

Security Report

4.8
Use Caution4.8High Risk

This is a well-structured MCP server with proper authentication, secure credential handling, and appropriate permissions. The API key is required and correctly passed via environment variables or CLI arguments. File operations include zip extraction with path traversal protection. Minor quality issues around input validation on user-facing parameters do not materially impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity).

6 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

Imagcon API key, issued free at https://imagcon.app/api-keysRequired

Environment variable: IMAGCON_API_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

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

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. Returns image_key and a preview URL. Show the preview to the user and confirm before generating icons.
  • save_image — Save a generated image to your gallery by image_key and name.
  • 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-saved image_key. Returns html_head + a signed ZIP URL; local stdio also extracts to output_dir (default ./).
  • install_pwa_pack — Same builder as create_icons_from_key. Splash is a second credit and defaults to false.

Icon sets

  • generate_pwa_icons — AI-generate a source image, then a droppable public/ tree. Extract to output_dir (default ./). Do not pass ./public/icons — that nests.
  • create_pwa_icons_from_image — Same PWA pipeline from an existing local PNG/JPEG/WebP at image_path (no AI generation).
  • list_saved_icon_sets — List saved icon sets with IDs.
  • download_icon_set — Download a saved icon set ZIP by set_id, extract to output_dir.
  • get_icon_set_download_url — Get an authenticated download URL for a saved icon set ZIP by set_id.

Splash screens

  • generate_splash_screens — AI-generate a source image and produce 16 iOS splash screens, extract to output_dir (default ./public/splash).
  • create_splash_screens_from_image — Same splash pipeline from an existing local PNG/JPEG/WebP at image_path (no AI generation).
  • create_splash_screens_from_key — Same splash pipeline from an existing image_key (e.g. from generate_image or list_saved_images) — composites the icon on each canvas size without re-generating.
  • download_splash_screens — Download a saved splash screen set ZIP by set_id, extract to output_dir.
  • get_splash_screen_download_url — Get an authenticated download URL for a saved splash screen set ZIP by set_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 from X-Imagcon-Token, name, terms_confirmed (after reading https://imagcon.app/terms-of-service), and a wallet signature over imagcon.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

SourceVariable / flag
EnvironmentIMAGCON_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).

Reviews

No reviews yet

Be the first to review this server!