Skip to content
VS Code

cal auto python for VS Code

io.github.danielsousaoliveira/cal-auto-python

Schedule a GitHub Projects backlog into Google Calendar, as a CLI or an MCP server.

client:VS Code transport:stdio runtime:pypi

Install cal auto python in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-project-id",
      "description": "GITHUB_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-timezone",
      "description": "CAL_AUTO_TIMEZONE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-config-dir",
      "description": "CAL_AUTO_CONFIG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-working-day-start",
      "description": "CAL_AUTO_WORKING_DAY_START",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-working-day-end",
      "description": "CAL_AUTO_WORKING_DAY_END",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-calendar-id",
      "description": "CAL_AUTO_CALENDAR_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-task-list-id",
      "description": "CAL_AUTO_TASK_LIST_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-attendees",
      "description": "CAL_AUTO_ATTENDEES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-schedulable-statuses",
      "description": "CAL_AUTO_SCHEDULABLE_STATUSES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cal-auto-count-all-day-events",
      "description": "CAL_AUTO_COUNT_ALL_DAY_EVENTS",
      "password": true
    }
  ],
  "servers": {
    "cal-auto-python": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cal-auto-python"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "GITHUB_PROJECT_ID": "${input:github-project-id}",
        "CAL_AUTO_TIMEZONE": "${input:cal-auto-timezone}",
        "CAL_AUTO_CONFIG_DIR": "${input:cal-auto-config-dir}",
        "CAL_AUTO_WORKING_DAY_START": "${input:cal-auto-working-day-start}",
        "CAL_AUTO_WORKING_DAY_END": "${input:cal-auto-working-day-end}",
        "CAL_AUTO_CALENDAR_ID": "${input:cal-auto-calendar-id}",
        "CAL_AUTO_TASK_LIST_ID": "${input:cal-auto-task-list-id}",
        "CAL_AUTO_ATTENDEES": "${input:cal-auto-attendees}",
        "CAL_AUTO_SCHEDULABLE_STATUSES": "${input:cal-auto-schedulable-statuses}",
        "CAL_AUTO_COUNT_ALL_DAY_EVENTS": "${input:cal-auto-count-all-day-events}"
      }
    }
  }
}

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

cal auto python in other clients