Skip to content
VS Code

founder for VS Code

io.github.autostackup/founder

Sales, marketing, HR + launch playbook, weekly briefing & investor pitch — all in one Claude server.

client:VS Code transport:stdio runtime:npm

Install founder in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hunter-api-key",
      "description": "HUNTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apollo-api-key",
      "description": "APOLLO_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "founder": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@autostackup/founder"
      ],
      "env": {
        "HUNTER_API_KEY": "${input:hunter-api-key}",
        "APOLLO_API_KEY": "${input:apollo-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

founder in other clients