home / mcp / video compilation mcp server
Provides an MCP server for AI-driven video compilation workflows, enabling AI agents to create, optimize, and monitor compilations.
Configuration
View docs{
"mcpServers": {
"hew-n8n-money": {
"command": "node",
"args": [
"/path/to/n8n-money/mcp-server.js"
],
"env": {
"N8N_API_KEY": "YOUR_API_KEY",
"N8N_BASE_URL": "http://localhost:5678/api"
}
}
}
}You can run and connect an MCP server that enables AI agents to directly control and optimize video compilation workflows. This server exposes tools for creating AI-enhanced video compilations, optimizing search queries, batching projects, and monitoring workflow status, making it easy to automate and scale video production powered by AI.
Connect your AI agent or editor to the Video Compilation MCP server to create, optimize, and manage AI-enhanced video compilations. Use the available tools to generate new compilations, refine search queries for better results, run multiple compilations in parallel, and monitor progress and outcomes from a single interface.
Prerequisites: ensure Node.js is installed on your machine.
Steps to install and run the MCP server locally:
# 1. Install dependencies for the project
npm install
# 2. Start the MCP server (standard development command)
npm run start:mcp
# 3. Run basic tests to verify setup
npm run test:mcpYou can connect an AI agent to the MCP server by configuring the agentβs MCP integration with the following local setup example.
{
"mcpServers": {
"n8n-video-compilation": {
"command": "node",
"args": ["/path/to/n8n-money/mcp-server.js"],
"env": {
"N8N_BASE_URL": "http://localhost:5678/api",
"N8N_API_KEY": "your_api_key"
}
}
}
}The server provides a set of tools to manage video compilation workflows. You can create AI-enhanced compilations, optimize search queries, run multiple compilations in batch, list available workflows, and monitor workflow status.
If you run into connection issues, verify that the MCP server is running and the client is configured to point at the correct host and port. Check that environment variables needed by the client are set, and ensure network access between the client and the MCP server.
Create AI-enhanced video compilations by assembling clips with AI-assisted curation and scoring.
Improve search queries for better content relevance and faster results in video compilations.
Process multiple compilation requests in parallel to maximize throughput.
Expose available n8n workflows that can be invoked by the MCP client.
Monitor and report on the execution status of active workflows.