Skip to content
VS Code

Comunio for VS Code

io.github.josetorronteras/comunio

Read and operate a Comunio fantasy football team: squad, market, offers, lineup

client:VS Code transport:stdio runtime:oci

Install Comunio in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "comunio-username",
      "description": "COMUNIO_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comunio-password",
      "description": "COMUNIO_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comunio-timezone",
      "description": "COMUNIO_TIMEZONE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "comunio-user-agent",
      "description": "COMUNIO_USER_AGENT",
      "password": true
    }
  ],
  "servers": {
    "comunio": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/josetorronteras/comunio-mcp:1.0.2"
      ],
      "env": {
        "COMUNIO_USERNAME": "${input:comunio-username}",
        "COMUNIO_PASSWORD": "${input:comunio-password}",
        "COMUNIO_TIMEZONE": "${input:comunio-timezone}",
        "COMUNIO_USER_AGENT": "${input:comunio-user-agent}"
      }
    }
  }
}

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

Comunio in other clients