Skip to content
VS Code

mcp supertoinette for VS Code

io.github.smeet666/mcp-supertoinette

Read Supertoinette recipes and rescale their quantities honestly. No API key.

client:VS Code transport:stdio runtime:npm

Install mcp supertoinette in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sto-user-agent",
      "description": "STO_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-min-interval-ms",
      "description": "STO_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-timeout-ms",
      "description": "STO_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-max-retries",
      "description": "STO_MAX_RETRIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-cache-ttl-ms",
      "description": "STO_CACHE_TTL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-cache-max-entries",
      "description": "STO_CACHE_MAX_ENTRIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sto-log-level",
      "description": "STO_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-supertoinette": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-supertoinette"
      ],
      "env": {
        "STO_USER_AGENT": "${input:sto-user-agent}",
        "STO_MIN_INTERVAL_MS": "${input:sto-min-interval-ms}",
        "STO_TIMEOUT_MS": "${input:sto-timeout-ms}",
        "STO_MAX_RETRIES": "${input:sto-max-retries}",
        "STO_CACHE_TTL_MS": "${input:sto-cache-ttl-ms}",
        "STO_CACHE_MAX_ENTRIES": "${input:sto-cache-max-entries}",
        "STO_LOG_LEVEL": "${input:sto-log-level}"
      }
    }
  }
}

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

mcp supertoinette in other clients