Skip to content
VS Code

engine for VS Code

io.github.cicicalex/engine

AIN bias & stability engine: finance, gaming, AI, crypto. 68 tools across 11 categories.

client:VS Code transport:stdio runtime:npm

Install engine in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zpl-api-key",
      "description": "ZPL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zpl-mode",
      "description": "ZPL_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zpl-engine-url",
      "description": "ZPL_ENGINE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "engine": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "zpl-engine-mcp"
      ],
      "env": {
        "ZPL_API_KEY": "${input:zpl-api-key}",
        "ZPL_MODE": "${input:zpl-mode}",
        "ZPL_ENGINE_URL": "${input:zpl-engine-url}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
      }
    }
  }
}

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

engine in other clients