{
  "info": {
    "name": "OneDrive — mcp.ai",
    "description": "REST API for the OneDrive 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/one_drive",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "one_drive_copy_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "item"
          ]
        },
        "description": "Tool to copy a DriveItem (file or folder) to a new location asynchronously. Use when you need to duplicate an item, optionally renaming it or specifying a different parent folder. The operation is asy",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"children_only\": false,\n  \"parent_reference\": {},\n  \"conflict_behavior\": \"\",\n  \"include_all_version_history\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_create_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "link"
          ]
        },
        "description": "Tool to create a sharing link for a DriveItem (file or folder) by its unique ID. Use when you need to generate a shareable link for an item in OneDrive or SharePoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"scope\": \"\",\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"password\": \"\",\n  \"recipients\": \"\",\n  \"expiration_date_time\": \"\",\n  \"retain_inherited_permissions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_delete_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "item"
          ]
        },
        "description": "Tool to delete a DriveItem (file or folder) by its unique ID from the authenticated user's OneDrive. Use when you need to remove an item from OneDrive. This action moves the item to the recycle bin, n",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"if_match\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_download_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/download/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "download",
            "file"
          ]
        },
        "description": "Downloads a file from a user's OneDrive using its item ID, which must refer to a file and not a folder. Response contains a content object with the downloaded file, MIME type, and name; raw file data ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"item_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"file_name\": \"\",\n  \"if_none_match\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_drive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/drive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "drive"
          ]
        },
        "description": "Retrieves the properties and relationships of a Drive resource by its unique ID. Use this action when you need to get details about a specific OneDrive, user's OneDrive, group's document library, or a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"drive_id\": \"\",\n  \"expand_fields\": \"\",\n  \"select_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item"
          ]
        },
        "description": "Retrieves the metadata of a DriveItem by its unique ID. Use this tool to get information about a specific file or folder in OneDrive when you have its ID. If a `drive_id` is not provided, it defaults ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"drive_id\": \"\",\n  \"select_fields\": \"\",\n  \"expand_relations\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_item_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item",
            "permissions"
          ]
        },
        "description": "Retrieves the permissions of a DriveItem by its unique ID within a specific Drive. Use when you need to check who has access to a file or folder and what level of access they have. Response nests perm",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"select\": \"\",\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"item_path\": \"\",\n  \"page_token\": \"\",\n  \"if_none_match\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_item_thumbnails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item/thumbnails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item",
            "thumbnails"
          ]
        },
        "description": "Tool to retrieve the thumbnails associated with a DriveItem. Use when you need to display visual previews of files. Response contains a `value` array with size keys (`small`, `medium`, `large`); thumb",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"select\": \"\",\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"original_orientation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_item_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item",
            "versions"
          ]
        },
        "description": "Tool to retrieve the version history of a DriveItem by its unique ID. Use when you need to access or list previous versions of a file. Version history may be unavailable or empty for folders or items ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_recent_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recent/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recent",
            "items"
          ]
        },
        "description": "DEPRECATED: Microsoft has deprecated the `GET /me/drive/recent` endpoint backing this action; it already runs in a degraded state and stops returning data after November 2026. This action is retained ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"select\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_shared_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shared/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shared",
            "items"
          ]
        },
        "description": "DEPRECATED: Use ONE_DRIVE_SEARCH_DRIVE_ITEMS to find a specific shared file or ONE_DRIVE_LIST_ONEDRIVE_SHARED_ITEMS to list files shared from other people's OneDrive accounts. Microsoft Graph sharedWi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"allow_external\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_sharepoint_list_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sharepoint/list/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sharepoint",
            "list",
            "items"
          ]
        },
        "description": "Tool to get the items (list items) within a specific SharePoint list on a site. Use when you need to retrieve data from a SharePoint list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"count\": false,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"list_id\": \"\",\n  \"orderby\": \"\",\n  \"site_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_site",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site"
          ]
        },
        "description": "Retrieves metadata for a specific SharePoint site by its ID. Use this action when you need to get details like display name, web URL, and creation/modification dates for a known SharePoint site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_get_site_page_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site/page/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site",
            "page",
            "content"
          ]
        },
        "description": "Gets the content of a modern SharePoint site page. Use when you need to retrieve the details and content of a specific page within a SharePoint site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"page_id\": \"\",\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_invite_user_to_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/user/to/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "user",
            "to",
            "item"
          ]
        },
        "description": "Tool to invite users or grant permissions to a specific item in a OneDrive drive. Use when you need to share a file or folder with other users and define their access level (e.g., read or write).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"roles\": \"\",\n  \"item_id\": \"\",\n  \"message\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"password\": \"\",\n  \"recipients\": \"\",\n  \"require_sign_in\": false,\n  \"send_invitation\": false,\n  \"expiration_date_time\": \"\",\n  \"retain_inherited_permissions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_drives",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/drives",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "drives"
          ]
        },
        "description": "Tool to retrieve a list of Drive resources available to the authenticated user, or for a specific user, group, or site. Use when you need to find out what drives are accessible. Returns only drives wi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"group_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_item_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/item/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "item",
            "activities"
          ]
        },
        "description": "Tool to list recent activities for a specific item in a OneDrive drive. Use when you need to track changes or actions performed on a file or folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"drive_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_root_drive_changes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/root/drive/changes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "root",
            "drive",
            "changes"
          ]
        },
        "description": "Tool to list changes in the root of the user's primary drive using a delta token. Use when you need to track file and folder modifications, additions, or deletions in the main OneDrive directory. Firs",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"token\": \"\",\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"drive_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_sharepoint_list_items_delta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sharepoint/list/items/delta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sharepoint",
            "list",
            "items",
            "delta"
          ]
        },
        "description": "Tool to track changes to items in a SharePoint list using a delta query. Use when you need to get newly created, updated, or deleted list items without performing a full read of the entire item collec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"token\": \"\",\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"list_id\": \"\",\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_site_columns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/site/columns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "site",
            "columns"
          ]
        },
        "description": "Tool to list all column definitions for a SharePoint site. Use this when you need to retrieve the schema or structure of columns within a specific SharePoint site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"count\": false,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_site_items_delta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/site/items/delta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "site",
            "items",
            "delta"
          ]
        },
        "description": "Tool to track changes to DriveItems in the default document library of a SharePoint site. Use when you need to get a list of items that have been added, modified, or deleted since a previous state or ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"token\": \"\",\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"site_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_site_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/site/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "site",
            "lists"
          ]
        },
        "description": "Tool to list all lists under a specific SharePoint site. Use when you need to enumerate lists within a known site. Returns only Microsoft Graph-supported lists — internal/system lists are excluded, so",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"site_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_site_subsites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/site/subsites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "site",
            "subsites"
          ]
        },
        "description": "Tool to list all subsites of a SharePoint site. Use when you need to retrieve a collection of subsites for a given parent site. IMPORTANT: This action only works with organizational Microsoft 365 acco",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"site_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_list_subscriptions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscriptions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscriptions"
          ]
        },
        "description": "Tool to list the current subscriptions for the authenticated user or app. Use this to retrieve details of existing webhook subscriptions. Results may span multiple drives and resources; filter client-",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_move_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "item"
          ]
        },
        "description": "Tool to move a file or folder to a new parent folder in OneDrive. Use when you need to reorganize your files or folders by changing their location. You can optionally rename the item during the move. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"itemId\": \"\",\n  \"siteId\": \"\",\n  \"userId\": \"\",\n  \"driveId\": \"\",\n  \"groupId\": \"\",\n  \"description\": \"\",\n  \"parentReference\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "create",
            "folder"
          ]
        },
        "description": "Creates a new folder in the user's OneDrive with configurable conflict behavior, optionally within a specified parent_folder (by ID or full path from root) which, if not the root, must exist and be ac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"user_id\": \"\",\n  \"description\": \"\",\n  \"parent_folder\": \"\",\n  \"conflict_behavior\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_create_text_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/create/text/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "create",
            "text",
            "file"
          ]
        },
        "description": "Creates a new plain-text file with specified content in the authenticated user's personal OneDrive, using either the folder's unique ID or its absolute path relative to the user's OneDrive root (paths",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folder\": \"\",\n  \"content\": \"\",\n  \"user_id\": \"\",\n  \"conflict_behavior\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_find_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/find/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "find",
            "file"
          ]
        },
        "description": "Non-recursively finds an item (file or folder) in a specified OneDrive folder; if `folder` is provided as a path, it must actually exist. Results in large folders may be paginated via `@odata.nextLink",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folder\": \"\",\n  \"user_id\": \"\",\n  \"response_detail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_find_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/find/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "find",
            "folder"
          ]
        },
        "description": "Finds folders by name within an accessible parent folder in OneDrive, or lists all its direct child folders if no name is specified. Search is non-recursive: only immediate children of `folder` are ch",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"name\": \"\",\n  \"expand\": \"\",\n  \"folder\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"user_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_list_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/list/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "list",
            "items"
          ]
        },
        "description": "Retrieves one page of files and folders as `driveItem` resources from the root of a specified user's OneDrive. Returns up to `top` items plus a `next_page_token`; pass that token back as `page_token` ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"select\": \"\",\n  \"user_id\": \"\",\n  \"page_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_onedrive_upload_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/onedrive/upload/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "onedrive",
            "upload",
            "file"
          ]
        },
        "description": "Uploads a file to a specified OneDrive folder, automatically creating the destination folder if it doesn't exist, renaming on conflict, and supporting large files via chunking.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"folder\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"file_name\": \"\",\n  \"source_url\": \"\",\n  \"verify_ssl\": false,\n  \"description\": \"\",\n  \"defer_commit\": false,\n  \"if_match_etag\": \"\",\n  \"source_headers\": {},\n  \"file_system_info\": {},\n  \"conflict_behavior\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_preview_drive_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/preview/drive/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "preview",
            "drive",
            "item"
          ]
        },
        "description": "Generates or retrieves a short-lived, permission-bound embeddable URL for a preview of a specific item. URLs expire and must be regenerated per session — do not cache. Use when you need to display a t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": \"\",\n  \"zoom\": 0,\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"share_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_search_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "items"
          ]
        },
        "description": "Search OneDrive for files and folders by keyword. Searches filenames, metadata, and file content to find matching items. Use when you need to find specific files based on keywords, file types, or cont",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"top\": 0,\n  \"expand\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"drive_id\": \"\",\n  \"page_token\": \"\",\n  \"search_scope\": \"\",\n  \"stripped_annotations\": \"\",\n  \"transformed_path_query\": \"\",\n  \"transformed_kql_operator\": \"\",\n  \"transformed_parent_query\": \"\",\n  \"transformed_wildcard_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "one_drive_update_drive_item_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/drive/item/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "drive",
            "item",
            "metadata"
          ]
        },
        "description": "Tool to update the metadata of a specific item (file or folder) in OneDrive. Use this to rename items, change descriptions, or move items to a new parent folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"item_id\": \"\",\n  \"site_id\": \"\",\n  \"user_id\": \"\",\n  \"drive_id\": \"\",\n  \"group_id\": \"\",\n  \"if_match\": \"\",\n  \"description\": \"\",\n  \"file_system_info\": {},\n  \"parent_reference_id\": \"\",\n  \"parent_reference_drive_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}