onedrive_delete_file
Delete files from Microsoft OneDrive using AI commands. Remove documents, photos, or folders from your cloud storage directly through Pilot MCP on macOS.
Instructions
Delete file from OneDrive
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Registration of onedrive_delete_file tool along with all other tools in a loop. Each tool is registered with an empty schema and a stub handler that returns an inspection message.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:55-55 (registration)Tool name and description entry for onedrive_delete_file in the TOOLS array
["onedrive_delete_file", "Delete file from OneDrive"],