Skip to main content

MCP server for Hoox — AI video generation platform

Project description

Hoox MCP Server

Official Model Context Protocol (MCP) server for Hoox — the AI video generation platform. This server lets any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) generate videos, manage avatars and voices, and export MP4 files using natural language.

Quickstart with Claude Desktop

  1. Get your API key from app.hoox.video → Settings → API Keys. An Enterprise plan is required to access the API.

  2. Install uv (Python package manager):

    macOS / Linux

    brew install uv
    

    Windows (PowerShell)

    irm https://astral.sh/uv/install.ps1 | iex
    

    If you run into issues, see the uv installation documentation.

  3. Open your claude_desktop_config.json (Claude → Preferences → Developer → Edit Config)
    and add the "mcpServers" block alongside your existing settings:

Before

{
  "preferences": {
    "quickEntryShortcut": "off",
    "coworkScheduledTasksEnabled": false,
    "sidebarMode": "chat"
  }
}

After

{
  "preferences": {
    "quickEntryShortcut": "off",
    "coworkScheduledTasksEnabled": false,
    "sidebarMode": "chat"
  },
  "mcpServers": {
    "Hoox": {
      "command": "uvx",
      "args": ["hoox-mcp"],
      "env": {
        "HOOX_API_KEY": "hx_live_your_key_here"
      }
    }
  }
}

Add the "mcpServers" block to your existing config file — keep your other settings intact.

Other MCP clients

For Cursor, OpenClaw, Claude Code, or any other compatible client:

pip install hoox-mcp

Then add the configuration to your client's MCP configuration file:

{
  "mcpServers": {
    "hoox": {
      "command": "hoox-mcp",
      "env": {
        "HOOX_API_KEY": "hx_live_your_key_here"
      }
    }
  }
}

Your MCP client can now interact with Hoox through the tools listed below.

Example prompts

⚠️ Hoox credits are required to use these tools.

Try for example:

  • "Use the Hoox API to generate a 60-second vertical product demo video for our new DTC skincare serum."
  • "List the male avatars available with a professional style"
  • "Create an avatar from this description: man in a conference room in a suit"
  • "Duplicate the video vid_xxx by changing the voice to a male English voice"
  • "Generate a 45 second script about our new DTC skincare serum, then start the video generation and export the result as MP4"

Available tools

Voices

Tool Description
list_voices List available voices with optional filters (language, gender, tags)
get_voice Get details for a voice by ID
list_resource_voices Simplified voice list optimized for generation

Avatars

Tool Description
list_avatars List available avatars with optional filters (gender, tags)
get_avatar Get full details for an avatar and its looks
get_avatar_look Get details for a specific look
create_avatar Create a new avatar from a prompt or reference images
edit_avatar Edit an existing look to create a new variation
get_avatar_status Check the creation status of an avatar
list_resource_avatars Simplified avatar list optimized for generation

Script

Tool Description
generate_script Generate a video narration script from a prompt

Video generation

Tool Description
start_generation Start an AI video generation job
get_generation_status Check the status and progress of a generation job

Export

Tool Description
start_export Start exporting a generated video to MP4
get_export_status Check the status of an export job

Video management

Tool Description
duplicate_video Duplicate a completed video, optionally changing the voice or avatar

Typical workflow

1. list_resource_voices / list_resource_avatars  →  pick a voice & avatar
2. generate_script (optional)                    →  get narration text
3. start_generation                              →  get job_id
4. get_generation_status (polling)               →  get video_id
5. start_export                                  →  get export job_id
6. get_export_status (polling)                   →  get MP4 download URL

Configuration

Environment variable Required Default Description
HOOX_API_KEY Yes Your Hoox API key (hx_live_...)

Troubleshooting

"HOOX_API_KEY is required"

Make sure the HOOX_API_KEY environment variable is set in your MCP client configuration. The key must start with hx_live_ or hx_.

Error plan_required (403)

Your Hoox account must have an Enterprise plan to use the API. Upgrade at app.hoox.video.

Error insufficient_credits (402)

Your workspace has run out of credits. Top up from the Hoox dashboard under Settings → Billing.

Error rate_limit_exceeded (429)

The API allows 100 requests per minute on the Enterprise plan. Wait a bit before trying again.

Tool not showing up in Claude Desktop / Cursor

  1. Check that hoox-mcp is installed: pip install hoox-mcp or uvx hoox-mcp --help
  2. Restart your MCP client after updating the configuration
  3. Check your client's logs for connection errors

Claude Desktop logs are located at:

  • macOS: ~/Library/Logs/Claude/mcp-server-hoox.log
  • Windows: %APPDATA%\\Claude\\logs\\mcp-server-hoox.log

Generation stuck in "processing"

Video generation can take between 1 and 5 minutes depending on duration and options. Use get_generation_status to monitor progress. If the job is stuck for more than 10 minutes, it may have failed — check the error field in the status response.

License

This project is licensed under the MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hoox_mcp-0.1.3.tar.gz (54.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hoox_mcp-0.1.3-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file hoox_mcp-0.1.3.tar.gz.

File metadata

  • Download URL: hoox_mcp-0.1.3.tar.gz
  • Upload date:
  • Size: 54.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for hoox_mcp-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e373116393cdcfc3f4a820fc452de17ff225e3d16df7baef02fb4aa596df75a9
MD5 ce0bbe69d944c816afa81f87bd83f6ea
BLAKE2b-256 a92e10b7eb8a3c0df978012ccfd4460efa22ae4358997125bbb2de66de628c91

See more details on using hashes here.

File details

Details for the file hoox_mcp-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: hoox_mcp-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for hoox_mcp-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 251bfb7a9653d96e98766ecc2b68e47409e30e3a07c72fff2fbf33a31631863b
MD5 67e42dc19f539b55e5e767f7b35ed739
BLAKE2b-256 5565b7249cbc9bcf8d47640dda2b66890e0a782dd8067671ed274bae175e40b9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page