# Does Kie.ai have an MCP server?

**Sort of — Community only.** Kie.ai does not maintain an official MCP server. Community-built servers exist.

## Facts

- Verdict: Community only (Sort of)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [felores/kie-cli-mcp](https://github.com/felores/kie-cli-mcp) — ★ 54, last push 2026-07-23, MIT
- Maintainer: Felo Restrepo
- Language: TypeScript
- Category: [Art & Culture](https://mcpyet.com/category/art-culture/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> Kie.ai CLI + MCP Server: Cost efficient media API ready to be used by MCP clients like Claude, Codex, OpenCode or Pi. Generative Ai Models available: Nano Banana Pro, Veo3 , Runway Aleph, Suno V5, ElevenLabs, Seedance, Seedream, Qwen, Flux, Wan, Midjourney and OpenAI Image 2
> — how [felores/kie-cli-mcp](https://github.com/felores/kie-cli-mcp) describes itself

Project site: <https://www.npmjs.com/package/@felores/kie-ai-mcp-server>

## The receipts

- **Top community server:** [felores/kie-cli-mcp](https://github.com/felores/kie-cli-mcp) — ★ 54, pushed 2026-07-23, MIT (active)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add kieai -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "kieai": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "kieai": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "kieai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## Before you connect this

A community server is unaudited third-party code that will hold your Kie.ai API credentials and see whatever data they unlock. Independent research puts SSRF vulnerabilities in roughly a third of public MCP servers, and 41% ship with no authentication at all.

- Read the source before running it — especially any network calls it makes.
- Check who maintains it and whether commits are recent (this one: last push 2026-07-23).
- Issue a scoped, revocable API key rather than an account-wide token.
- Prefer read-only credentials until you trust it with writes.

## How we know

docs.kie.ai has REST API + webhooks only, no vendor MCP server. Strongest community server: felores/kie-cli-mcp (also npm @felores/kie-ai-mcp-server). COMMUNITY-ONLY confirmed.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Art & Culture

- [fal.ai](https://mcpyet.com/mcp/fal-ai.md) — Official (Yes)
- [Kling](https://mcpyet.com/mcp/kling.md) — Community only (Sort of)
- [Blender](https://mcpyet.com/mcp/blender.md) — Community only (Sort of)
- [Canva](https://mcpyet.com/mcp/canva.md) — Official (Yes)
- [Spotify](https://mcpyet.com/mcp/spotify.md) — Community only (Sort of)
- [LabelGrid](https://mcpyet.com/mcp/labelgrid.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/kie-ai/ — data refreshed 2026-08-11
