Skip to content
VS Code

cantrip for VS Code

io.github.ozten/cantrip

MCP server for Cantrip — AI-powered GTM engine for solo founders

client:VS Code transport:stdio runtime:npm

Install cantrip in VS Code

.vscode/mcp.json

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

cantrip in other clients