OneDrive Automation via Rube MCP
Automate OneDrive operations including file upload/download, search, folder management, sharing links, permissions management, and drive browsing through Composio's OneDrive toolkit.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active OneDrive connection via
RUBE_MANAGE_CONNECTIONS with toolkit one_drive
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit one_drive
- If connection is not ACTIVE, follow the returned auth link to complete Microsoft OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Search and Browse Files
When to use: User wants to find files or browse folder contents in OneDrive
Tool sequence:
ONE_DRIVE_GET_DRIVE - Verify drive access and get drive details [Prerequisite]
ONE_DRIVE_SEARCH_ITEMS - Keyword search across filenames, metadata, and content [Required]
ONE_DRIVE_ONEDRIVE_LIST_ITEMS - List all items in the root of a drive [Optional]
ONE_DRIVE_GET_ITEM - Get detailed metadata for a specific item, expand children [Optional]
ONE_DRIVE_ONEDRIVE_FIND_FILE - Find a specific file by exact name in a folder [Optional]
ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Find a specific folder by name [Optional]
ONE_DRIVE_LIST_DRIVES - List all accessible drives [Optional]
Key parameters:
q: Search query (plain keywords only, NOT KQL syntax)
search_scope: "root" (folder hierarchy) or "drive" (includes shared items)
top: Max items per page (default 200)
skip_token: Pagination token from @odata.nextLink
select: Comma-separated fields to return (e.g., "id,name,webUrl,size")
orderby: Sort order (e.g., "name asc", "name desc")
item_id: Item ID for GET_ITEM
expand_relations: Array like ["children"] or ["thumbnails"] for GET_ITEM
user_id: "me" (default) or specific user ID/email
Pitfalls:
ONE_DRIVE_SEARCH_ITEMS does NOT support KQL operators (folder:, file:, filetype:, path:); these are treated as literal text
- Wildcard characters (
*, ?) are NOT supported and are auto-removed; use file extension keywords instead (e.g., "pdf" not "*.pdf")
ONE_DRIVE_ONEDRIVE_LIST_ITEMS returns only root-level contents; use recursive ONE_DRIVE_GET_ITEM with expand_relations: ["children"] for deeper levels
- Large folders paginate; always follow
skip_token / @odata.nextLink until exhausted
- Some drive ID formats may return "ObjectHandle is Invalid" errors due to Microsoft Graph API limitations
2. Upload and Download Files
When to use: User wants to upload files to OneDrive or download files from it
Tool sequence:
ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Locate the target folder [Prerequisite]
ONE_DRIVE_ONEDRIVE_UPLOAD_FILE - Upload a file to a specified folder [Required for upload]
ONE_DRIVE_DOWNLOAD_FILE - Download a file by item ID [Required for download]
ONE_DRIVE_GET_ITEM - Get file details before download [Optional]
Key parameters:
file: FileUploadable object with s3key, mimetype, and name for uploads
folder: Destination path (e.g., "/Documents/Reports") or folder ID for uploads
item_id: File's unique identifier for downloads
file_name: Desired filename with extension for downloads
drive_id: Specific drive ID (for SharePoint or OneDrive for Business)
user_id: "me" (default) or specific user identifier
Pitfalls:
- Upload automatically renames on conflict (no overwrite option by default)
- Large files are automatically handled via chunking
drive_id overrides user_id when both are provided
- Item IDs vary by platform: OneDrive for Business uses
01... prefix, OneDrive Personal uses HASH!NUMBER format
- Item IDs are case-sensitive; use exactly as returned from API
3. Share Files and Manage Permissions
When to use: User wants to share files/folders or manage who has access
Tool sequence:
ONE_DRIVE_ONEDRIVE_FIND_FILE or ONE_DRIVE_ONEDRIVE_FIND_FOLDER - Locate the item [Prerequisite]
ONE_DRIVE_GET_ITEM_PERMISSIONS - Check current permissions [Prerequisite]
ONE_DRIVE_INVITE_USER_TO_DRIVE_ITEM - Grant access to specific users [Required]
ONE_DRIVE_CREATE_LINK - Create a shareable link [Optional]
ONE_DRIVE_UPDATE_DRIVE_ITEM_METADATA - Update item metadata [Optional]
Key parameters:
item_id: The file or folder to share
recipients: Array of objects with email or object_id
roles: Array with "read" or "write"
send_invitation: true to send notification email, false for silent permission grant
require_sign_in: true to require au
1---2name: one-drive-automation3description: Automate OneDrive file management, search, uploads, downloads, sharing, permissions, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.4---567# OneDrive Automation via Rube MCP89Automate OneDrive operations including file upload/download, search, folder management, sharing links, permissions management, and drive browsing through Composio's OneDrive toolkit.1011## Prerequisites1213- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)14- Active OneDrive connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `one_drive`15- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1617## Setup1819**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.20211. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds222. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `one_drive`233. If connection is not ACTIVE, follow the returned auth link to complete Microsoft OAuth244. Confirm connection status shows ACTIVE before running any workflows2526## Core Workflows2728### 1. Search and Browse Files2930**When to use**: User wants to find files or browse folder contents in OneDrive3132**Tool sequence**:331. `ONE_DRIVE_GET_DRIVE` - Verify drive access and get drive details [Prerequisite]342. `ONE_DRIVE_SEARCH_ITEMS` - Keyword search across filenames, metadata, and content [Required]353. `ONE_DRIVE_ONEDRIVE_LIST_ITEMS` - List all items in the root of a drive [Optional]364. `ONE_DRIVE_GET_ITEM` - Get detailed metadata for a specific item, expand children [Optional]375. `ONE_DRIVE_ONEDRIVE_FIND_FILE` - Find a specific file by exact name in a folder [Optional]386. `ONE_DRIVE_ONEDRIVE_FIND_FOLDER` - Find a specific folder by name [Optional]397. `ONE_DRIVE_LIST_DRIVES` - List all accessible drives [Optional]4041**Key parameters**:42- `q`: Search query (plain keywords only, NOT KQL syntax)43- `search_scope`: `"root"` (folder hierarchy) or `"drive"` (includes shared items)44- `top`: Max items per page (default 200)45- `skip_token`: Pagination token from `@odata.nextLink`46- `select`: Comma-separated fields to return (e.g., `"id,name,webUrl,size"`)47- `orderby`: Sort order (e.g., `"name asc"`, `"name desc"`)48- `item_id`: Item ID for `GET_ITEM`49- `expand_relations`: Array like `["children"]` or `["thumbnails"]` for `GET_ITEM`50- `user_id`: `"me"` (default) or specific user ID/email5152**Pitfalls**:53- `ONE_DRIVE_SEARCH_ITEMS` does NOT support KQL operators (`folder:`, `file:`, `filetype:`, `path:`); these are treated as literal text54- Wildcard characters (`*`, `?`) are NOT supported and are auto-removed; use file extension keywords instead (e.g., `"pdf"` not `"*.pdf"`)55- `ONE_DRIVE_ONEDRIVE_LIST_ITEMS` returns only root-level contents; use recursive `ONE_DRIVE_GET_ITEM` with `expand_relations: ["children"]` for deeper levels56- Large folders paginate; always follow `skip_token` / `@odata.nextLink` until exhausted57- Some drive ID formats may return "ObjectHandle is Invalid" errors due to Microsoft Graph API limitations5859### 2. Upload and Download Files6061**When to use**: User wants to upload files to OneDrive or download files from it6263**Tool sequence**:641. `ONE_DRIVE_ONEDRIVE_FIND_FOLDER` - Locate the target folder [Prerequisite]652. `ONE_DRIVE_ONEDRIVE_UPLOAD_FILE` - Upload a file to a specified folder [Required for upload]663. `ONE_DRIVE_DOWNLOAD_FILE` - Download a file by item ID [Required for download]674. `ONE_DRIVE_GET_ITEM` - Get file details before download [Optional]6869**Key parameters**:70- `file`: FileUploadable object with `s3key`, `mimetype`, and `name` for uploads71- `folder`: Destination path (e.g., `"/Documents/Reports"`) or folder ID for uploads72- `item_id`: File's unique identifier for downloads73- `file_name`: Desired filename with extension for downloads74- `drive_id`: Specific drive ID (for SharePoint or OneDrive for Business)75- `user_id`: `"me"` (default) or specific user identifier7677**Pitfalls**:78- Upload automatically renames on conflict (no overwrite option by default)79- Large files are automatically handled via chunking80- `drive_id` overrides `user_id` when both are provided81- Item IDs vary by platform: OneDrive for Business uses `01...` prefix, OneDrive Personal uses `HASH!NUMBER` format82- Item IDs are case-sensitive; use exactly as returned from API8384### 3. Share Files and Manage Permissions8586**When to use**: User wants to share files/folders or manage who has access8788**Tool sequence**:891. `ONE_DRIVE_ONEDRIVE_FIND_FILE` or `ONE_DRIVE_ONEDRIVE_FIND_FOLDER` - Locate the item [Prerequisite]902. `ONE_DRIVE_GET_ITEM_PERMISSIONS` - Check current permissions [Prerequisite]913. `ONE_DRIVE_INVITE_USER_TO_DRIVE_ITEM` - Grant access to specific users [Required]924. `ONE_DRIVE_CREATE_LINK` - Create a shareable link [Optional]935. `ONE_DRIVE_UPDATE_DRIVE_ITEM_METADATA` - Update item metadata [Optional]9495**Key parameters**:96- `item_id`: The file or folder to share97- `recipients`: Array of objects with `email` or `object_id`98- `roles`: Array with `"read"` or `"write"`99- `send_invitation`: `true` to send notification email, `false` for silent permission grant100- `require_sign_in`: `true` to require au