aiconnai/imagekit-mcp-server
MCP server for ImageKit.io — upload, search, transform, and manage media assets
A Model Context Protocol (MCP) server for ImageKit.io that lets AI assistants upload, search, transform, and manage media assets in your ImageKit media library.
npx imagekit-mcp-serverRequires three environment variables:
IMAGEKIT_PUBLIC_KEY=public_xxx
IMAGEKIT_PRIVATE_KEY=private_xxx
IMAGEKIT_URL_ENDPOINT=https://ik.imagekit.io/your_idGet your credentials from the ImageKit Dashboard.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"imagekit": {
"command": "npx",
"args": ["-y", "imagekit-mcp-server"],
"env": {
"IMAGEKIT_PUBLIC_KEY": "public_xxx",
"IMAGEKIT_PRIVATE_KEY": "private_xxx",
"IMAGEKIT_URL_ENDPOINT": "https://ik.imagekit.io/your_id"
}
}
}
}Add to ~/.claude/settings.json:
{
"mcpServers": {
"imagekit": {
"command": "npx",
"args": ["-y", "imagekit-mcp-server"],
"env": {
"IMAGEKIT_PUBLIC_KEY": "public_xxx",
"IMAGEKIT_PRIVATE_KEY": "private_xxx",
"IMAGEKIT_URL_ENDPOINT": "https://ik.imagekit.io/your_id"
}
}
}
}Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"imagekit": {
"command": "npx",
"args": ["-y", "imagekit-mcp-server"],
"env": {
"IMAGEKIT_PUBLIC_KEY": "public_xxx",
"IMAGEKIT_PRIVATE_KEY": "private_xxx",
"IMAGEKIT_URL_ENDPOINT": "https://ik.imagekit.io/your_id"
}
}
}
}| Tool | Description | |------|-------------| | list_files | List and search files with filters (path, type, search query, pagination, sort) | | list_folders | List folders at a given path | | get_file_details | Get full metadata for a file (dim
Loading reviews...