Creatify MCP Server

MCP Server that exposes Creatify AI API capabilities for AI video generation, including avatar videos, URL-to-video conversion, text-to-speech, and

Local serverstdioTypeScript

What is the Creatify MCP server?

Creatify MCP server exists for a simple reason — assistants are far more useful when they can act on Creatify directly instead of describing what you should do. MCP Server that exposes Creatify AI API capabilities for AI video generation, including avatar videos, URL-to-video conversion, text-to-speech, and AI-powered.

What you get

The Creatify MCP Server is a comprehensive Model Context Protocol (MCP) server that exposes the full power of Creatify AI's video generation platform to AI assistants, chatbots, and automation tools. Built on top of the robust @tsavo/creatify-api-ts TypeScript client library, this server transforms complex video creation workflows into simple, natural language interactions.

What the assistant can call

Once Creatify is connected, these are the calls the assistant has available:

  • Tools — The Tools tool exposed by this server
  • create_avatar_video — The create_avatar_video tool exposed by this server
  • create_url_to_video — The create_url_to_video tool exposed by this server
  • generate_text_to_speech — The generate_text_to_speech tool exposed by this server
  • get_video_status — The get_video_status tool exposed by this server
  • Resources — The Resources tool exposed by this server

Configuration and credentials

You will need 3 environment variables: CREATIFY_API_ID, CREATIFY_API_KEY, MCP_LOG_LEVEL. 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.

  • Node.js 18 or higher - Creatify API credentials (Pro plan or higher) - Get your API credentials from Creatify account settings

Setting it up

@tsavo/creatify-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Choosing this one

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. Creatify's toolset — Tools, create_avatar_video, create_url_to_video and 3 more — is a fair guide to whether it matches your workflow.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • 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.
  • 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 creatify mcp server does with a few real requests.

Available tools

ToolWhat it does
ToolsThe Tools tool exposed by this server.
create_avatar_videoThe create_avatar_video tool exposed by this server.
create_url_to_videoThe create_url_to_video tool exposed by this server.
generate_text_to_speechThe generate_text_to_speech tool exposed by this server.
get_video_statusThe get_video_status tool exposed by this server.
ResourcesThe Resources tool exposed by this server.

How to install the Creatify MCP server

{
  "mcpServers": {
    "creatify": {
      "command": "creatify-mcp",
      "env": {
        "CREATIFY_API_ID": "your-api-id",
        "CREATIFY_API_KEY": "your-api-key"
      }
    }
  }
}

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

Configuration

  • Node.js 18 or higher - Creatify API credentials (Pro plan or higher) - Get your API credentials from Creatify account settings
VariableDescriptionRequired
CREATIFY_API_IDConfiguration value read at startup.Optional
CREATIFY_API_KEYCredential the server authenticates with.Yes
MCP_LOG_LEVELConfiguration value read at startup.Optional

Example prompts to try

  • Use Creatify to Tools.
  • Use Creatify to create avatar video.
  • Use Creatify to create url to video.

Frequently asked questions

It connects Creatify to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Tools, create_avatar_video, create_url_to_video, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Creatify directly.