Skip to content
VS Code

pixelletter mcp for VS Code

io.github.bitterdev/pixelletter-mcp

Send physical letters and faxes through the PixelLetter interface, test mode included.

client:VS Code transport:stdio runtime:npm

Install pixelletter mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pixelletter-email",
      "description": "PIXELLETTER_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pixelletter-password",
      "description": "PIXELLETTER_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pixelletter-default-destination",
      "description": "PIXELLETTER_DEFAULT_DESTINATION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pixelletter-force-test-mode",
      "description": "PIXELLETTER_FORCE_TEST_MODE",
      "password": true
    }
  ],
  "servers": {
    "pixelletter-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pixelletter-mcp"
      ],
      "env": {
        "PIXELLETTER_EMAIL": "${input:pixelletter-email}",
        "PIXELLETTER_PASSWORD": "${input:pixelletter-password}",
        "PIXELLETTER_DEFAULT_DESTINATION": "${input:pixelletter-default-destination}",
        "PIXELLETTER_FORCE_TEST_MODE": "${input:pixelletter-force-test-mode}"
      }
    }
  }
}

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

pixelletter mcp in other clients