Skip to content
VS Code

listonic mcp for VS Code

io.github.arturlys/listonic-mcp

Let your AI manage your real grocery list — unofficial Listonic MCP server

client:VS Code transport:stdio runtime:pypi

Install listonic mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "listonic-email",
      "description": "LISTONIC_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "listonic-password",
      "description": "LISTONIC_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "listonic-list-id",
      "description": "LISTONIC_LIST_ID",
      "password": true
    }
  ],
  "servers": {
    "listonic-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "listonic-mcp"
      ],
      "env": {
        "LISTONIC_EMAIL": "${input:listonic-email}",
        "LISTONIC_PASSWORD": "${input:listonic-password}",
        "LISTONIC_LIST_ID": "${input:listonic-list-id}"
      }
    }
  }
}

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

listonic mcp in other clients