Reusable AI agent skills for ImageKit.io — install them with the skills CLI to enhance your coding agent's capabilities.
| Skill | Description |
|---|---|
| mcp-preflight | Mandatory routing guide — tells the agent which MCP server to call for what, before every ImageKit tool invocation |
| search-docs | Search ImageKit documentation with optimized queries and source selection |
| transformation-builder | Build ImageKit image/video transformations — AI editing, background removal, resize, crop, overlays, and more |
| upload-files | Upload files to ImageKit media library with folder paths, tags, and metadata |
| ai-tasks | Apply AI-powered analysis to images for business-specific tagging, metadata extraction, and quality checks using controlled vocabularies |
You can install skills and MCP servers using either method:
- Plugin Method (Recommended): Use the ImageKit plugin for your platform for guided, one-click setup of skills and MCP servers
- Manual Method: Install skills via CLI and add MCP servers through configuration files
Choose the method that works best for your workflow. Below, each platform shows both options.
Follow these steps to install the ImageKit plugin in Claude Code:
-
Open Plugin Settings — Click on Customize in the left sidebar

-
Add Marketplace — Click the "+" button and select Create Plugin → Add Marketplace

-
Enter Plugin URL — Add
imagekit-developer/skillsin the marketplace URL field
-
Install Plugin — Find and install the ImageKit Skills plugin

-
Install MCP Servers — Click on Connectors in the installed plugin and install the MCP servers (
imagekit_devtoolsandimagekit_api)
-
Complete Authentication — Complete authentication for the
imagekit_apiserver when prompted
Once complete, all ImageKit skills and MCP servers are ready to use in Claude Code.
Install Skills
npx skills add imagekit-developer/skills --allRun the following command in your terminal:
claude mcp add imagekit_devtools --transport http https://devtools-mcp.imagekit.io/mcp
claude mcp add imagekit_api --transport http https://api-mcp.imagekit.in/mcpOr edit your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"imagekit_devtools": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://devtools-mcp.imagekit.io/mcp"]
},
"imagekit_api": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://api-mcp.imagekit.in/mcp"]
}
}
}Note: Restart Claude Desktop / ClaudeCode after making changes for the MCP servers to take effect.
Install Skills
npx skills add imagekit-developer/skills --allAdd MCP servers via CLI:
codex mcp add imagekit_devtools --url https://devtools-mcp.imagekit.io/mcp
codex mcp add imagekit_api --url https://api-mcp.imagekit.in/mcpOr edit ~/.codex/config.toml directly:
[mcp_servers.imagekit_devtools]
url = "https://devtools-mcp.imagekit.io/mcp"
[mcp_servers.imagekit_api]
url = "https://api-mcp.imagekit.in/mcp"Note: Restart Codex after adding MCP servers for them to take effect.
Follow these steps to install the ImageKit plugin in VS Code:
-
Open Command Palette — Press
⇧⌘Pand run Install Plugin from Source
-
Add Plugin Repository — Enter
imagekit-developer/skillsin the plugin source field
-
Complete Installation — Continue with the installation process as prompted
-
Restart VS Code — Restart VS Code for all skills and MCP servers to take effect
Once complete, all ImageKit skills and MCP servers are ready to use in VS Code.
Install Skills
npx skills add imagekit-developer/skills --allInstall MCP servers via the command line:
code --add-mcp "{\"name\":\"imagekit_devtools\",\"type\":\"http\",\"url\":\"https://devtools-mcp.imagekit.io/mcp\"}"
code --add-mcp "{\"name\":\"imagekit_api\",\"type\":\"http\",\"url\":\"https://api-mcp.imagekit.in/mcp\"}"Or install via the VS Code UI:
- Open the Command Palette (
⇧⌘P) and run MCP: Add Server - Select HTTP (http or Server Sent Event) as the server type
- Enter the server URL when prompted:
- Imagekit DevTools MCP:
https://devtools-mcp.imagekit.io/mcp - Imagekit API MCP:
https://api-mcp.imagekit.in/mcp
- Imagekit DevTools MCP:
- Enter the server name (
imagekit_devtoolsorimagekit_api)
Note: Restart VS Code after adding MCP servers for them to take effect.
Install Skills
npx skills add imagekit-developer/skills --allAdd MCP server via these buttons
Or edit your Cursor MCP configuration at ~/.cursor/mcp.json:
{
"mcpServers": {
"imagekit_devtools": {
"url": "https://devtools-mcp.imagekit.io/mcp"
},
"imagekit_api": {
"url": "https://api-mcp.imagekit.in/mcp"
}
}
}Note: Restart Cursor after adding MCP servers for them to take effect.
npx skills add imagekit-developer/skills --allOr edit your Windsurf configuration at ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"imagekit_devtools": {
"url": "https://devtools-mcp.imagekit.io/mcp"
},
"imagekit_api": {
"url": "https://api-mcp.imagekit.in/mcp"
}
}
}Note: Restart Windsurf after adding MCP servers for them to take effect.
Once installed, these skills are automatically available to your AI agent. The agent will consult the relevant skill before performing ImageKit operations, ensuring correct tool usage and better results.
MIT