Skip to content
VS Code

alchm kitchen for VS Code

io.github.gregcastro23/alchm-kitchen

Live transits, ESMS ingredients, cosmic recipes, synastry & transit×natal overlays by alchm.kitchen

client:VS Code transport:stdio runtime:npm

Install alchm kitchen in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-user-api-key",
      "description": "MCP_USER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    }
  ],
  "servers": {
    "alchm-kitchen": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@alchm/mcp-server"
      ],
      "env": {
        "MCP_USER_API_KEY": "${input:mcp-user-api-key}",
        "DATABASE_URL": "${input:database-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

alchm kitchen in other clients