Skip to main content
ClaudeWave

Official ImageKit MCP servers (DAM, Admin, DevTools) and agent skills for Claude, Cursor, VS Code, Codex and other MCP clients

MCP ServersOfficial Registry2 stars2 forksMITUpdated 5d ago
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/16/2026
Install in Claude Code / Claude Desktop
Method: NPX · skills
Claude Code CLI
claude mcp add skills -- npx -y skills
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "skills": {
      "command": "npx",
      "args": ["-y", "skills"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# ImageKit Skills

[![skills.sh](https://skills.sh/b/imagekit-developer/skills)](https://skills.sh/imagekit-developer/skills)

Reusable AI agent skills for [ImageKit.io](https://imagekit.io) — install them with the `skills` CLI to enhance your coding agent's capabilities.

## Skills

| Skill | Description |
|-------|-------------|
| **mcp-preflight** | Which MCP server to call: DAM (media library), Admin (origins, URL endpoints, usage analytics), or DevTools |
| **search-assets** | Lucene `searchQuery` for DAM `search_media_library` — discover custom metadata and tags before guessing |
| **upload-files** | DAM uploads via `upload_file` (picker) or `create_upload_signature` — never inline file bytes |
| **asset-access-control** | File/folder vs media-collection ACL tools, and the write rules that are easy to get wrong |
| **ai-tasks** | Payload shape for AI tagging, metadata extraction, and quality checks on DAM assets |
| **search-docs** | How to query DevTools `search_docs` (query rewriting and source selection) |
| **transformation-builder** | How to query DevTools `transformation_builder` for correct transformation URLs |
| **imagekit-integrations** | Index 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 server | URL | Auth |
|------------|-----|------|
| `imagekit_devtools` | `https://devtools-mcp.imagekit.io/mcp` | None |
| `imagekit_dam` | `https://imagekit.io/mcp/dam` | Sign in with your ImageKit account |
| `imagekit_admin` | `https://imagekit.io/mcp/admin` | Sign 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:

| Server | Use it to |
|--------|-----------|
| DAM | Search, upload, organize, tag, share, and manage the media library |
| Admin | Manage origins (external storage), URL endpoints, account usage, and usage analytics |
| DevTools | Search 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):

```bash
npx skills add imagekit-developer/skills --all
```

**2. Add the MCP servers** for your tool:

<details>
<summary><b>Claude Code</b></summary>

```bash
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
```
</details>

<details>
<summary><b>Claude Desktop</b></summary>

Edit your config file:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

```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"]
    }
  }
}
```
</details>

<details>
<summary><b>Codex</b></summary>

Via CLI:

```bash
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`:

```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"
```
</details>

<details>
<summary><b>VS Code Copilot</b></summary>

```bash
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\"}"
```
</details>

<details>
<summary><b>Cursor</b></summary>

Install with these buttons:

- [![Install DevTools MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en-US/install-mcp?name=imagekit_devtools&config=eyJ1cmwiOiJodHRwczovL2RldnRvb2xzLW1jcC5pbWFnZWtpdC5pby9tY3AifQ%3D%3D)
- [![Install DAM MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en-US/install-mcp?name=imagekit_dam&config=eyJ1cmwiOiJodHRwczovL2ltYWdla2l0LmlvL21jcC9kYW0ifQ%3D%3D)
- [![Install Admin MCP Server](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/en-US/install-mcp?name=imagekit_admin&config=eyJ1cmwiOiJodHRwczovL2ltYWdla2l0LmlvL21jcC9hZG1pbiJ9)

Or edit `~/.cursor/mcp.json`:

```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" }
  }
}
```
</details>

<details>
<summary><b>Windsurf</b></summary>

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

```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" }
  }
}
```
</details>

## 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
agent-skillsclaude-plugindamimagekitmcpmcp-servermedia-management

What people ask about skills

What is imagekit-developer/skills?

+

imagekit-developer/skills is mcp servers for the Claude AI ecosystem. Official ImageKit MCP servers (DAM, Admin, DevTools) and agent skills for Claude, Cursor, VS Code, Codex and other MCP clients It has 2 GitHub stars and its last recorded update is dated 2026-09-10.

How do I install skills?

+

You can install skills by cloning the repository (https://github.com/imagekit-developer/skills) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is imagekit-developer/skills safe to use?

+

Our security agent has analyzed imagekit-developer/skills and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains imagekit-developer/skills?

+

imagekit-developer/skills is maintained by imagekit-developer. The last recorded GitHub activity is dated 2026-09-10, with 0 open issues.

Are there alternatives to skills?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy skills to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: imagekit-developer/skills
[![Featured on ClaudeWave](https://claudewave.com/api/badge/imagekit-developer-skills)](https://claudewave.com/repo/imagekit-developer-skills)
<a href="https://claudewave.com/repo/imagekit-developer-skills"><img src="https://claudewave.com/api/badge/imagekit-developer-skills" alt="Featured on ClaudeWave: imagekit-developer/skills" width="320" height="64" /></a>

More MCP Servers

skills alternatives