Skip to content
VS Code

fxray for VS Code

io.github.s-curvelabs/fxray

Power Apps via pac: solutions, canvas Power Fx source, Dataverse metadata, FetchXML, gated imports.

client:VS Code transport:stdio runtime:pypi

Install fxray in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fxray-config",
      "description": "FXRAY_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fxray-workspace",
      "description": "FXRAY_WORKSPACE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fxray-home",
      "description": "FXRAY_HOME",
      "password": true
    }
  ],
  "servers": {
    "fxray": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fxray"
      ],
      "env": {
        "FXRAY_CONFIG": "${input:fxray-config}",
        "FXRAY_WORKSPACE": "${input:fxray-workspace}",
        "FXRAY_HOME": "${input:fxray-home}"
      }
    }
  }
}

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

fxray in other clients