Skip to content
VS Code

SuperCMO for VS Code

io.github.supercmohq/supercmo

Marketing media generation — image, video, voice — for AI agents. BYO keys.

client:VS Code transport:stdio runtime:pypi

Install SuperCMO in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wavespeed-api-key",
      "description": "WAVESPEED_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fal-key",
      "description": "FAL_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "elevenlabs-api-key",
      "description": "ELEVENLABS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "firecrawl-api-key",
      "description": "FIRECRAWL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scrapecreators-api-key",
      "description": "SCRAPECREATORS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "supercmo": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "supercmo-skills"
      ],
      "env": {
        "WAVESPEED_API_KEY": "${input:wavespeed-api-key}",
        "FAL_KEY": "${input:fal-key}",
        "ELEVENLABS_API_KEY": "${input:elevenlabs-api-key}",
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "FIRECRAWL_API_KEY": "${input:firecrawl-api-key}",
        "SCRAPECREATORS_API_KEY": "${input:scrapecreators-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

SuperCMO in other clients