Skip to content
VS Code

croissant for VS Code

io.github.getcroissant/croissant

Search and book coworking spaces and conference rooms via Croissant.

client:VS Code transport:stdio runtime:npm

Install croissant in VS Code

.vscode/mcp.json

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

croissant in other clients