Skip to content
VS Code

fly io for VS Code

com.pulsemcp/fly-io

MCP server for managing Fly.io machines, apps, logs, and Docker images.

client:VS Code transport:stdio runtime:npm

Install fly io in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fly-io-api-token",
      "description": "FLY_IO_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fly-io-app-name",
      "description": "FLY_IO_APP_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "enabled-toolgroups",
      "description": "ENABLED_TOOLGROUPS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skip-health-checks",
      "description": "SKIP_HEALTH_CHECKS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "disable-docker-cli-tools",
      "description": "DISABLE_DOCKER_CLI_TOOLS",
      "password": true
    }
  ],
  "servers": {
    "fly-io": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fly-io-mcp-server"
      ],
      "env": {
        "FLY_IO_API_TOKEN": "${input:fly-io-api-token}",
        "FLY_IO_APP_NAME": "${input:fly-io-app-name}",
        "ENABLED_TOOLGROUPS": "${input:enabled-toolgroups}",
        "SKIP_HEALTH_CHECKS": "${input:skip-health-checks}",
        "DISABLE_DOCKER_CLI_TOOLS": "${input:disable-docker-cli-tools}"
      }
    }
  }
}

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

fly io in other clients