onedrive_delete_file
Delete a file from OneDrive. Remove unwanted files to free up storage and keep your cloud organized.
Instructions
Delete file from OneDrive
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:55-55 (registration)Tool 'onedrive_delete_file' is registered in the TOOLS array with description 'Delete file from OneDrive'. This is a stub MCP server; the real implementation is in a native binary (macOS/Windows/Linux).
["onedrive_delete_file", "Delete file from OneDrive"], - server.js:106-109 (handler)The handler for all tools (including onedrive_delete_file) is a generic stub that returns a message pointing users to install the full Local MCP binary. There is no real implementation in this file.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], }));