GEN for VS Code
io.github.poweredbygen/gen-mcp-server
GEN is an autonomous social media agent: it spots trends, writes scripts, and creates videos.
client:VS Code
transport:stdio
runtime:pypi
Install GEN in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gen-api-key",
"description": "GEN_API_KEY",
"password": true
}
],
"servers": {
"gen-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"gen-mcp-server"
],
"env": {
"GEN_API_KEY": "${input:gen-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