🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@ilovevideoeditor/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ilovevideoeditor/mcp-server

MCP Server for iLoveVideoEditor — exposes video rendering tools to AI agents

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

iLoveVideoEditor MCP Server

Model Context Protocol (MCP) server that exposes iLoveVideoEditor video rendering capabilities to AI agents.

Configuration

Set these environment variables before starting the server:

VariableDefaultDescription
VF_API_BASE_URLhttps://api.ilovevideoeditor.comiLoveVideoEditor API base URL
VF_API_KEYRequired. Your iLoveVideoEditor API key (x-api-key)

Example:

export VF_API_BASE_URL=https://api.ilovevideoeditor.com
export VF_API_KEY=vf_live_xxx
node dist/server.js

Tools

ToolDescription
ilovevideoeditor_list_templatesList available templates
ilovevideoeditor_get_templateGet template details and variable schema
ilovevideoeditor_render_jsonSubmit raw VideoJSON for rendering
ilovevideoeditor_render_templateRender from a named template + variables
ilovevideoeditor_get_render_statusPoll render job status
ilovevideoeditor_get_download_urlGet signed download URL

Templates

LovAble Templates

  • lovable_good_morning — Warm morning greeting
  • lovable_apology — Sincere / playful / dramatic apology
  • lovable_memory_montage — Photo montage for milestones

Usage

# Build
npm run build

# Run (stdio transport for MCP)
VF_API_KEY=your_key npm start

# Dev
VF_API_KEY=your_key npm run dev

Integration with Claude / MCP Clients

Add to your MCP client config:

{
	"mcpServers": {
		"ilovevideoeditor": {
			"command": "node",
			"args": ["/path/to/integrations/mcp-server/dist/server.js"],
			"env": {
				"VF_API_KEY": "vf_live_xxx",
				"VF_API_BASE_URL": "https://api.ilovevideoeditor.com"
			}
		}
	}
}

Keywords

mcp

FAQs

Package last updated on 15 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts