Jimeng Ai MCP Server

火山引擎即梦AI多模态生成服务MCP工具

Local serverstdioTypeScript

What is the Jimeng Ai MCP MCP server?

火山引擎即梦AI多模态生成服务MCP工具. The jimeng ai mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

这是一个基于火山引擎即梦AI的多模态生成服务,支持图像生成、视频生成等功能,可通过MCP协议在Cursor、Claude Desktop等MCP客户端中使用,也可作为独立库调用。支持 macOS、Linux、Windows 及 WSL 环境。

Adding it to your client

The server ships on npm as jimeng-ai-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • patch — 用于修复错误 (例如 1.0.4 -> 1.0.5)。
  • minor — 用于添加向后兼容的功能 (例如 1.0.4 -> 1.1.0)。
  • major — 用于不向后兼容的重大更改 (例如 1.0.4 -> 2.0.0)。
  • beta — 创建或递增一个测试版本 (例如 1.0.4 -> 1.0.5-beta.0 或 1.0.5-beta.0 -> 1.0.5-beta.1)。
  • Windows — - 如果遇到路径问题,请检查命令路径是否正确,必要时使用完整路径。
  • text — 要在图片上显示的文字
  • illustration — 作为图片配饰的插画元素关键词
  • color — 图片的背景主色调
  • ratio — 图片比例,支持: 4:3 (512×384), 3:4 (384×512), 16:9 (512×288), 9:16 (288×512)
  • prompt — 视频内容的描述
  • num_frames — 视频帧数 (可选,默认16)
  • fps — 视频帧率 (可选,默认8)

Configuration

You will need 4 environment variables: JIMENG_ACCESS_KEY, JIMENG_SECRET_KEY, YOUR_ACCESS_KEY, YOUR_SECRET_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Jimeng Ai MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the jimeng ai mcp mcp server does with a few real requests.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Jimeng Ai MCP's toolset — patch, minor, major and 11 more — is a fair guide to whether it matches your workflow. It is maintained by freeleepm; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Jimeng Ai MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
patch用于修复错误 (例如 1.0.4 -> 1.0.5)。
minor用于添加向后兼容的功能 (例如 1.0.4 -> 1.1.0)。
major用于不向后兼容的重大更改 (例如 1.0.4 -> 2.0.0)。
beta创建或递增一个测试版本 (例如 1.0.4 -> 1.0.5-beta.0 或 1.0.5-beta.0 -> 1.0.5-beta.1)。
Windows- 如果遇到路径问题,请检查命令路径是否正确,必要时使用完整路径。
text要在图片上显示的文字
illustration作为图片配饰的插画元素关键词
color图片的背景主色调
ratio图片比例,支持: 4:3 (512×384), 3:4 (384×512), 16:9 (512×288), 9:16 (288×512)
prompt视频内容的描述
num_frames视频帧数 (可选,默认16)
fps视频帧率 (可选,默认8)
image_urls输入图片URL数组 (JPEG/PNG格式)
aspect_ratio视频比例 (可选,如"16:9"、"4:3"等,默认"16:9")

How to install the Jimeng Ai MCP MCP server

{
  "mcpServers": {
    "jimeng-ai": {
      "command": "npx",
      "args": ["-y", "jimeng-ai-mcp"],
      "env": {
        "JIMENG_ACCESS_KEY": "your-value",
        "JIMENG_SECRET_KEY": "your-value",
        "YOUR_ACCESS_KEY": "your-value",
        "YOUR_SECRET_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
JIMENG_ACCESS_KEYCredential the server authenticates with.Yes
JIMENG_SECRET_KEYCredential the server authenticates with.Yes
YOUR_ACCESS_KEYCredential the server authenticates with.Yes
YOUR_SECRET_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Jimeng Ai MCP to patch.
  • Use Jimeng Ai MCP to minor.
  • Use Jimeng Ai MCP to major.

Frequently asked questions

It connects Jimeng Ai MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (patch, minor, major, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Jimeng Ai MCP directly.