onedrive_list_files
Browse and list Microsoft OneDrive files and folders using AI agents. Enables Claude, Cursor, and Windsurf to access cloud storage contents on your Mac.
Instructions
List files and folders in OneDrive
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Registration of onedrive_list_files as a stub tool. All tools in the TOOLS array are registered here using server.tool() with an empty schema and a stub handler that returns an installation 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:51-51 (registration)Definition of the onedrive_list_files tool in the TOOLS array with its description "List files and folders in OneDrive".
["onedrive_list_files", "List files and folders in OneDrive"],