{
  "info": {
    "name": "Google Tasks — mcp.ai",
    "description": "REST API for the Google Tasks MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/googletasks",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "googletasks_clear_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "tasks"
          ]
        },
        "description": "Permanently clears all completed tasks from a specified google tasks list; this action is destructive and idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_create_task_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task",
            "list"
          ]
        },
        "description": "Creates a new task list with the specified title.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasklist_title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_delete_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task"
          ]
        },
        "description": "Deletes a specified task from a given task list in google tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_delete_task_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task",
            "list"
          ]
        },
        "description": "Permanently deletes an existing google task list, identified by `tasklist id`, along with all its tasks; this operation is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_get_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task"
          ]
        },
        "description": "Use to retrieve a specific google task if its `task id` and parent `tasklist id` are known.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_get_task_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "list"
          ]
        },
        "description": "Retrieves a specific task list from the user's google tasks if the `tasklist id` exists for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_insert_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/insert/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "insert",
            "task"
          ]
        },
        "description": "Creates a new task in a given `tasklist id`, optionally as a subtask of an existing `task parent` or positioned after an existing `task previous` sibling, where both `task parent` and `task previous` ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"due\": \"\",\n  \"etag\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"hidden\": false,\n  \"status\": \"\",\n  \"deleted\": false,\n  \"completed\": \"\",\n  \"task_parent\": \"\",\n  \"tasklist_id\": \"\",\n  \"task_previous\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_list_task_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/task/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "task",
            "lists"
          ]
        },
        "description": "Fetches the authenticated user's task lists from google tasks; results may be paginated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageToken\": \"\",\n  \"maxResults\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_list_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tasks"
          ]
        },
        "description": "Retrieves tasks from a google tasks list; all date/time strings must be rfc3339 utc, and `showcompleted` must be true if `completedmin` or `completedmax` are specified.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dueMax\": \"\",\n  \"dueMin\": \"\",\n  \"pageToken\": \"\",\n  \"maxResults\": 0,\n  \"showHidden\": false,\n  \"updatedMin\": \"\",\n  \"showDeleted\": false,\n  \"tasklist_id\": \"\",\n  \"completedMax\": \"\",\n  \"completedMin\": \"\",\n  \"showCompleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_move_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "task"
          ]
        },
        "description": "Moves the specified task to another position in the destination task list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": \"\",\n  \"parent\": \"\",\n  \"previous\": \"\",\n  \"tasklist\": \"\",\n  \"destinationTasklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_patch_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "task"
          ]
        },
        "description": "Partially updates an existing task (identified by `task id`) within a specific google task list (identified by `tasklist id`), modifying only the provided attributes from `taskinput` (e.g., `title`, `",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"due\": \"\",\n  \"etag\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"hidden\": false,\n  \"status\": \"\",\n  \"deleted\": false,\n  \"task_id\": \"\",\n  \"completed\": \"\",\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_patch_task_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/task/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "task",
            "list"
          ]
        },
        "description": "Updates the title of an existing google tasks task list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tasklist_id\": \"\",\n  \"updated_title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task"
          ]
        },
        "description": "Updates the specified task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"due\": \"\",\n  \"task\": \"\",\n  \"notes\": \"\",\n  \"title\": \"\",\n  \"status\": \"\",\n  \"tasklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googletasks_update_task_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task",
            "list"
          ]
        },
        "description": "Updates the authenticated user's specified task list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"tasklist_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}