Back to Browse

Skills MCP Server

Developer ToolsLow Risk9.5MCP RegistryRemote
Free

Server data from the Official MCP Registry

Official ImageKit admin server: manage origins, URL endpoints, account usage and usage analytics.

About

Official ImageKit admin server: manage origins, URL endpoints, account usage and usage analytics.

Remote endpoints: streamable-http: https://imagekit.io/mcp/admin

Security Report

9.5
Low Risk9.5Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 2 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.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-imagekit-admin": {
      "url": "https://imagekit.io/mcp/admin"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

ImageKit Skills

skills.sh

Reusable AI agent skills for ImageKit.io — install them with the skills CLI to enhance your coding agent's capabilities.

Skills

SkillDescription
mcp-preflightWhich MCP server to call: DAM (media library), Admin (origins, URL endpoints, usage analytics), or DevTools
search-assetsLucene searchQuery for DAM search_media_library — discover custom metadata and tags before guessing
upload-filesDAM uploads via upload_file (picker) or create_upload_signature — never inline file bytes
asset-access-controlFile/folder vs media-collection ACL tools, and the write rules that are easy to get wrong
ai-tasksPayload shape for AI tagging, metadata extraction, and quality checks on DAM assets
search-docsHow to query DevTools search_docs (query rewriting and source selection)
transformation-builderHow to query DevTools transformation_builder for correct transformation URLs
imagekit-integrationsIndex of ImageKit SDKs, plugins, and widgets — pick the right one for a stack, then search the docs

Installation

There are two pieces to install: the skills (this repo) and the MCP servers:

MCP serverURLAuth
imagekit_devtoolshttps://devtools-mcp.imagekit.io/mcpNone
imagekit_damhttps://imagekit.io/mcp/damSign in with your ImageKit account
imagekit_adminhttps://imagekit.io/mcp/adminSign in with your ImageKit account

If you previously connected https://api-mcp.imagekit.io/mcp, remove it and add DAM and Admin instead.

What each server does:

ServerUse it to
DAMSearch, upload, organize, tag, share, and manage the media library
AdminManage origins (external storage), URL endpoints, account usage, and usage analytics
DevToolsSearch the docs and build transformation URLs (no sign-in)

Pick one of the two methods below. Restart your editor after installing so the MCP servers take effect. Authenticate DAM and Admin when prompted.

Plugin method (recommended)

On Claude Desktop, Claude.ai (web), and VS Code, the ImageKit plugin installs the skills and MCP servers in a single step.

Claude Desktop & Claude.ai (web)

  1. Open Customize in the left sidebar and go to the Plugins tab.
  2. Under Personal plugins, click + → Add marketplace → Add from a repository, and enter imagekit-developer/skills.
  3. Install the ImageKit plugin from that marketplace.
  4. Enable the bundled imagekit_devtools, imagekit_dam, and imagekit_admin connectors, and authenticate DAM and Admin when prompted.

VS Code

  1. Open the Command Palette (⇧⌘P) and run Install Plugin from Source.
  2. Enter imagekit-developer/skills as the plugin source.
  3. Restart VS Code.

Manual method

1. Install the skills (same command on every platform):

npx skills add imagekit-developer/skills --all

2. Add the MCP servers for your tool:

claude mcp add --transport http imagekit_devtools https://devtools-mcp.imagekit.io/mcp
claude mcp add --transport http imagekit_dam https://imagekit.io/mcp/dam
claude mcp add --transport http imagekit_admin https://imagekit.io/mcp/admin

Edit your config 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_dam": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://imagekit.io/mcp/dam"]
    },
    "imagekit_admin": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://imagekit.io/mcp/admin"]
    }
  }
}

Via CLI:

codex mcp add imagekit_devtools --url https://devtools-mcp.imagekit.io/mcp
codex mcp add imagekit_dam --url https://imagekit.io/mcp/dam
codex mcp add imagekit_admin --url https://imagekit.io/mcp/admin

Or edit ~/.codex/config.toml:

[mcp_servers.imagekit_devtools]
url = "https://devtools-mcp.imagekit.io/mcp"

[mcp_servers.imagekit_dam]
url = "https://imagekit.io/mcp/dam"

[mcp_servers.imagekit_admin]
url = "https://imagekit.io/mcp/admin"
code --add-mcp "{\"name\":\"imagekit_devtools\",\"type\":\"http\",\"url\":\"https://devtools-mcp.imagekit.io/mcp\"}"
code --add-mcp "{\"name\":\"imagekit_dam\",\"type\":\"http\",\"url\":\"https://imagekit.io/mcp/dam\"}"
code --add-mcp "{\"name\":\"imagekit_admin\",\"type\":\"http\",\"url\":\"https://imagekit.io/mcp/admin\"}"

Install with these buttons:

  • Install DevTools MCP Server
  • Install DAM MCP Server
  • Install Admin MCP Server

Or edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "imagekit_devtools": { "url": "https://devtools-mcp.imagekit.io/mcp" },
    "imagekit_dam": { "url": "https://imagekit.io/mcp/dam" },
    "imagekit_admin": { "url": "https://imagekit.io/mcp/admin" }
  }
}

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "imagekit_devtools": { "serverUrl": "https://devtools-mcp.imagekit.io/mcp" },
    "imagekit_dam": { "serverUrl": "https://imagekit.io/mcp/dam" },
    "imagekit_admin": { "serverUrl": "https://imagekit.io/mcp/admin" }
  }
}

Usage

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.

License

MIT

Reviews

No reviews yet

Be the first to review this server!