Tasks Today

Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.

Surfaces
google-apps-script-webgoogle-meet-stagemcp-apps
Live preview
✅ Today's Tasks
Fields
FieldType
titlestring. Card heading. Default is "Today's Tasks".optional
max_resultsinteger. Maximum tasks to show. Default 10.optional
list_namestring (optional, gas-native). Name of the task list.optional
itemsarray (static connector). Array of {title, due, completed} for non-GAS surfaces.required
auth_tokenstring (api connector). OAuth2 bearer token for REST API.required
Example payload
{
  "type": "tasks_today",
  "items": [
    {
      "label": "Item 1"
    },
    {
      "label": "Item 2"
    }
  ],
  "auth_token": "your-api-token"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:tasks_today",
  "displayName": "Tasks Today",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/tasks_today",
  "capabilities": [
    "google-apps-script-web",
    "google-meet-stage",
    "mcp-apps"
  ],
  "description": "Incomplete tasks displayed as an interactive checkbox list. On GAS uses the Tasks API for live data; on other surfaces renders from an items[] array or the Google Tasks REST API.",
  "representativeQueries": [
    "show a task checklist \u2014 live via Tasks API on GAS, items[] array on other surfaces",
    "incomplete tasks displayed as an interactive checkbox list. on gas uses the tasks api for live data;",
    "render a tasks today"
  ]
}
← Full ARD catalog
Deploy your own Google Apps Script renderer

The renderer is an open-source Google Apps Script web app. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd a2ui/apps-script-surface/gas-wired-renderer
clasp push && clasp deploy
Full deploy guide →