Drive File List

Live list of files in a Google Drive folder rendered with icons and download links. Works on Google Apps Script only.

Surfaces
google-apps-script-webmcp-apps ⚠
Degraded on
SurfaceNote
mcp-appsrenders sample data — live Google Workspace data requires an Apps Script deployment
Live preview
🗂️ Drive file list — Folder ID: [{'title': 'Doc 1', 'url': 'https://example.com'}, {'title': 'Doc 2', 'url': 'https://example.com'}] (max 10 results). Live data requires server-side auth.
Fields
FieldType
folder_idstring. The Google Drive folder ID to list files from.required
max_resultsinteger. Maximum number of files to return. Default is 10.optional
Example payload
{
  "type": "drive_file_list",
  "folder_id": [
    {
      "title": "Doc 1",
      "url": "https://example.com"
    },
    {
      "title": "Doc 2",
      "url": "https://example.com"
    }
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:drive_file_list",
  "displayName": "Drive File List",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/drive_file_list",
  "capabilities": [
    "google-apps-script-web",
    "mcp-apps"
  ],
  "description": "Live list of files in a Google Drive folder rendered with icons and download links. Works on Google Apps Script only.",
  "representativeQueries": [
    "show a live list of Drive folder files",
    "live list of files in a google drive folder rendered with icons and download links. works on google",
    "render a drive file list"
  ]
}
← 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 →