Skip to content
VS Code

crowntowncompost mcp for VS Code

io.github.chrischall/crowntowncompost-mcp

Customer access to the Crown Town Compost portal: pickups, invoices, and skips (AI-built).

client:VS Code transport:stdio runtime:npm

Install crowntowncompost mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "crowntown-session-cookie",
      "description": "CROWNTOWN_SESSION_COOKIE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "crowntown-username",
      "description": "CROWNTOWN_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "crowntown-password",
      "description": "CROWNTOWN_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "crowntown-session-cache",
      "description": "CROWNTOWN_SESSION_CACHE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "crowntown-session-file",
      "description": "CROWNTOWN_SESSION_FILE",
      "password": true
    }
  ],
  "servers": {
    "crowntowncompost-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "crowntowncompost-mcp"
      ],
      "env": {
        "CROWNTOWN_SESSION_COOKIE": "${input:crowntown-session-cookie}",
        "CROWNTOWN_USERNAME": "${input:crowntown-username}",
        "CROWNTOWN_PASSWORD": "${input:crowntown-password}",
        "CROWNTOWN_SESSION_CACHE": "${input:crowntown-session-cache}",
        "CROWNTOWN_SESSION_FILE": "${input:crowntown-session-file}"
      }
    }
  }
}

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

crowntowncompost mcp in other clients