Skip to content
VS Code

MetaEngine for VS Code

eu.metaengine/mcp-server

Code generation from JSON recipes, linked type graphs, and API schemas across 11 languages.

client:VS Code transport:stdio runtime:npm

Install MetaEngine in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "metaengine-api-url",
      "description": "METAENGINE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@metaengine/mcp-server"
      ],
      "env": {
        "METAENGINE_API_URL": "${input:metaengine-api-url}"
      }
    }
  }
}

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

MetaEngine in other clients