Skip to content
VS Code

Meaning Model for VS Code

io.github.emergent-wisdom/meaning-model

General-purpose, revisable process models with application-defined categories. Rust engine required.

client:VS Code transport:stdio runtime:npm

Install Meaning Model in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "life-sim-engine-bin",
      "description": "LIFE_SIM_ENGINE_BIN",
      "password": true
    }
  ],
  "servers": {
    "meaning-model": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@emergent-wisdom/meaning-model-mcp"
      ],
      "env": {
        "LIFE_SIM_ENGINE_BIN": "${input:life-sim-engine-bin}"
      }
    }
  }
}

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

Meaning Model in other clients