kuriflow mcp for VS Code
io.github.sgunk13/kuriflow-mcp
Make AI tasks repeatable. Run with new data automatically — zero AI tokens per run.
client:VS Code
transport:stdio
runtime:pypi
Install kuriflow mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kuriflow-api-key",
"description": "KURIFLOW_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kuriflow-api-url",
"description": "KURIFLOW_API_URL",
"password": true
}
],
"servers": {
"kuriflow-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"kuriflow-mcp"
],
"env": {
"KURIFLOW_API_KEY": "${input:kuriflow-api-key}",
"KURIFLOW_API_URL": "${input:kuriflow-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs