Skip to content
VS Code

mcp kit for VS Code

io.github.aplaceforallmystuff/mcp-kit

MCP server for Kit.com (ConvertKit) - manage subscribers, tags, sequences, broadcasts

client:VS Code transport:stdio runtime:npm

Install mcp kit in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kit-api-key",
      "description": "KIT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-kit": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "kit-mcp-server"
      ],
      "env": {
        "KIT_API_KEY": "${input:kit-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

mcp kit in other clients