MediaEngine MCP Server

AI image, video, and audio generation for MCP — one API key, every model, wiring never changes.

Local serverstdio

What is the MediaEngine MCP server?

Most AI and media services work still happens through a UI a human drives. MediaEngine MCP server moves it into the conversation instead. AI image, video, and audio generation for MCP — one API key, every model, wiring never changes.

The short version

MCP server for MediaEngine — AI-powered image, audio, and video generation for Claude, Cursor, and other MCP clients.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

The tools it exposes

The server publishes 12 tools. What each one is for:

  • generate_image — Generate images from text prompts — full model catalog (Nano Banana, GPT-Image)
  • generate_article_hero_image — Hero banner for blog posts and articles
  • generate_email_header_image — Header image for marketing emails
  • generate_social_teaser_image — Social media graphics for LinkedIn, Twitter, Instagram
  • generate_video — AI video generation with provider-specific params
  • generate_article_teaser_video — Short teaser videos from article content
  • generate_audio — Text-to-speech synthesis
  • generate_article_narration — Audio narration for articles and blog posts
  • wait_for_job — Poll until a media job completes
  • get_job_status — Check status of a media job
  • list_jobs — List media jobs with filtering and pagination
  • Cursor — The Cursor tool exposed by this server

What it needs from you

Configuration is passed through the environment: MEDIAENGINE_BASE_URL, MEDIAENGINE_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • 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 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MediaEngine.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MediaEngine's toolset — generate_image, generate_article_hero_image, generate_email_header_image and 9 more — is a fair guide to whether it matches your workflow. It is maintained by Tr1ckyMag1ca1; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
generate_imageGenerate images from text prompts — full model catalog (Nano Banana, GPT-Image)
generate_article_hero_imageHero banner for blog posts and articles
generate_email_header_imageHeader image for marketing emails
generate_social_teaser_imageSocial media graphics for LinkedIn, Twitter, Instagram
generate_videoAI video generation with provider-specific params
generate_article_teaser_videoShort teaser videos from article content
generate_audioText-to-speech synthesis
generate_article_narrationAudio narration for articles and blog posts
wait_for_jobPoll until a media job completes
get_job_statusCheck status of a media job
list_jobsList media jobs with filtering and pagination
CursorThe Cursor tool exposed by this server.

How to install the MediaEngine MCP server

{
  "mcpServers": {
    "mediaengine": {
      "command": "npx",
      "args": ["-y", "mcp-media-engine"],
      "env": {
        "MEDIAENGINE_BASE_URL": "https://your-mediaengine-instance.com",
        "MEDIAENGINE_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MEDIAENGINE_BASE_URLEndpoint or connection string the server talks to.Yes
MEDIAENGINE_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MediaEngine to generate image.
  • Use MediaEngine to generate article hero image.
  • Use MediaEngine to generate email header image.

Frequently asked questions

It connects MediaEngine to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (generate_image, generate_article_hero_image, generate_email_header_image, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MediaEngine directly.