✓ Verified 💻 Development ✓ Enhanced Data

Assimilate Mcp

Control Assimilate Live FX / SCRATCH — professional color grading, compositing, and virtual producti

Rating
3.8 (35 reviews)
Downloads
1,039 downloads
Version
1.0.0

Overview

Control Assimilate Live FX / SCRATCH — professional color grading, compositing, and virtual production software.

Complete Documentation

View Source →

Assimilate MCP

Control Assimilate Live FX / SCRATCH — professional color grading, compositing, and virtual production software — via MCP. Complete 1:1 integration of the Assimilate REST API with 88 tools across 14 categories.

Prerequisites

Setup

MCPorter

bash
mcporter config add assimilate --command npx --args '["-y", "assimilate-mcp"]'
mcporter list assimilate

Claude Desktop

Add to claude_desktop_config.json:

json
{
  "mcpServers": {
    "assimilate": {
      "command": "npx",
      "args": ["-y", "assimilate-mcp"]
    }
  }
}

Claude Code

bash
claude mcp add assimilate -- npx -y assimilate-mcp

Configuration

FlagEnv VarDefaultDescription
--hostASSIMILATE_HOST127.0.0.1Live FX host
--portASSIMILATE_PORT8080REST API port
--keyASSIMILATE_KEYAuthorization key
--timeoutASSIMILATE_TIMEOUT30000HTTP timeout (ms)
Example with custom port:

json
{
  "mcpServers": {
    "assimilate": {
      "command": "npx",
      "args": ["-y", "assimilate-mcp", "--port=9090"]
    }
  }
}

Tools (88)

| Category | Count | Key Tools | |----------|:-----:|-----------| | System | 8 | get_system check_connection list_users select_user | | Projects | 7 | list_projects enter_project create_project | | Groups | 9 | list_groups get_current_group create_group | | Constructs | 10 | list_constructs create_construct enter_construct | | Slots | 5 | list_slots get_slot set_slot create_slot | | Versions | 5 | list_versions get_version set_version | | Shots | 7 | get_shot set_shot create_shot import_media | | Inputs | 4 | get_inputs get_input set_input | | Color Grading | 5 | get_grade set_grade get_framing set_framing | | Player | 8 | enter_timeline set_playmode enter_shot exit_player | | Render | 10 | start_render stop_render get_render_status | | Outputs | 6 | list_outputs create_output set_output | | Snapshots | 2 | render_snapshot get_shot_metadata | | Files | 2 | list_directory find_media |

Usage Examples

Talk to your AI assistant in natural language:

  • "What projects are available?"
  • "Import the ARRIRAW files from /Volumes/Shuttle/Day_14"
  • "Warm up the gamma on this shot"
  • "Set up ProRes 4444 output and render the timeline"
  • "Take a snapshot of this frame"

MCPorter CLI

bash
mcporter call assimilate.check_connection
mcporter call assimilate.list_projects
mcporter call 'assimilate.enter_project(name: "Commercial_Nike_Q3")'
mcporter call assimilate.get_grade

Remote Access

Live FX accepts connections on localhost by default. For remote machines, use an SSH tunnel:

bash
ssh -f -N -L 8080:127.0.0.1:8080 user@livefx-host

Links

Installation

Terminal bash

openclaw install assimilate-mcp
    
Copied!

💻Code Examples

mcporter list assimilate

mcporter-list-assimilate.txt
### Claude Desktop

Add to `claude_desktop_config.json`:

claude mcp add assimilate -- npx -y assimilate-mcp

claude-mcp-add-assimilate----npx--y-assimilate-mcp.txt
## Configuration

| Flag | Env Var | Default | Description |
|------|---------|---------|-------------|
| `--host` | `ASSIMILATE_HOST` | `127.0.0.1` | Live FX host |
| `--port` | `ASSIMILATE_PORT` | `8080` | REST API port |
| `--key` | `ASSIMILATE_KEY` | — | Authorization key |
| `--timeout` | `ASSIMILATE_TIMEOUT` | `30000` | HTTP timeout (ms) |

Example with custom port:

}

.txt
## Tools (88)

| Category | Count | Key Tools |
|----------|:-----:|-----------|
| **System** | 8 | `get_system` `check_connection` `list_users` `select_user` |
| **Projects** | 7 | `list_projects` `enter_project` `create_project` |
| **Groups** | 9 | `list_groups` `get_current_group` `create_group` |
| **Constructs** | 10 | `list_constructs` `create_construct` `enter_construct` |
| **Slots** | 5 | `list_slots` `get_slot` `set_slot` `create_slot` |
| **Versions** | 5 | `list_versions` `get_version` `set_version` |
| **Shots** | 7 | `get_shot` `set_shot` `create_shot` `import_media` |
| **Inputs** | 4 | `get_inputs` `get_input` `set_input` |
| **Color Grading** | 5 | `get_grade` `set_grade` `get_framing` `set_framing` |
| **Player** | 8 | `enter_timeline` `set_playmode` `enter_shot` `exit_player` |
| **Render** | 10 | `start_render` `stop_render` `get_render_status` |
| **Outputs** | 6 | `list_outputs` `create_output` `set_output` |
| **Snapshots** | 2 | `render_snapshot` `get_shot_metadata` |
| **Files** | 2 | `list_directory` `find_media` |

## Usage Examples

Talk to your AI assistant in natural language:

- *"What projects are available?"*
- *"Import the ARRIRAW files from /Volumes/Shuttle/Day_14"*
- *"Warm up the gamma on this shot"*
- *"Set up ProRes 4444 output and render the timeline"*
- *"Take a snapshot of this frame"*

### MCPorter CLI

mcporter call assimilate.get_grade

mcporter-call-assimilategetgrade.txt
## Remote Access

Live FX accepts connections on localhost by default. For remote machines, use an SSH tunnel:
example.json
{
  "mcpServers": {
    "assimilate": {
      "command": "npx",
      "args": ["-y", "assimilate-mcp"]
    }
  }
}
example.json
{
  "mcpServers": {
    "assimilate": {
      "command": "npx",
      "args": ["-y", "assimilate-mcp", "--port=9090"]
    }
  }
}
example.sh
mcporter call assimilate.check_connection
mcporter call assimilate.list_projects
mcporter call 'assimilate.enter_project(name: "Commercial_Nike_Q3")'
mcporter call assimilate.get_grade

⚙️Configuration Options

Option Type Default Description
--hoststringASSIMILATE_HOST`127.0.0.1`
--portstringASSIMILATE_PORT`8080`
--keystringASSIMILATE_KEY
--timeoutstringASSIMILATE_TIMEOUT`30000`

Tags

#clawdbot_tools

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author ergopooka
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install assimilate-mcp