Skip to content
VS Code

TRIZ for VS Code

io.github.sv/triz

Deterministic, read-only TRIZ knowledge: parameters, principles, matrix, tool routing, effects.

client:VS Code transport:stdio runtime:npm

Install TRIZ in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "triz-data-dir",
      "description": "TRIZ_DATA_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "triz-graph",
      "description": "TRIZ_GRAPH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "triz-registry",
      "description": "TRIZ_REGISTRY",
      "password": true
    }
  ],
  "servers": {
    "triz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "triz-mcp"
      ],
      "env": {
        "TRIZ_DATA_DIR": "${input:triz-data-dir}",
        "TRIZ_GRAPH": "${input:triz-graph}",
        "TRIZ_REGISTRY": "${input:triz-registry}"
      }
    }
  }
}

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

TRIZ in other clients