shotflow mcp for VS Code
io.github.johnzhang-ui/shotflow-mcp
ShotFlow MCP Server — AI分镜脚本与视频生成智能体,支持生成专业分镜、视频、镜头重生成、配额查询等能力。
client:VS Code
transport:stdio
runtime:npm
Install shotflow mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shotflow-api-url",
"description": "SHOTFLOW_API_URL",
"password": true
},
{
"type": "promptString",
"id": "mcp-api-key",
"description": "MCP_API_KEY",
"password": true
}
],
"servers": {
"shotflow-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"shotflow-mcp-server"
],
"env": {
"SHOTFLOW_API_URL": "${input:shotflow-api-url}",
"MCP_API_KEY": "${input:mcp-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs