mcp server for VS Code
com.ilovevideoeditor/mcp-server
Render videos from VideoJSON + 249+ templates via the iLoveVideoEditor API
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "vf-api-key",
"description": "VF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "vf-api-base-url",
"description": "VF_API_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ilovevideoeditor/mcp-server"
],
"env": {
"VF_API_KEY": "${input:vf-api-key}",
"VF_API_BASE_URL": "${input:vf-api-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs