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.2.2-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.2.2-py3-none-any.whl imagcon-mcpexport 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.2.2-py3-none-any.whl", "imagcon-mcp", "--api-key", "ic_live_..."]
}
}
}





