onedrive_read_file
Read files from Microsoft OneDrive to analyze document contents, extract data, and integrate cloud storage into AI workflows without switching applications.
Instructions
Read file content from OneDrive
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration loop that registers 'onedrive_read_file' with a stub handler. All tools in the TOOLS array are registered here with empty schema and a stub implementation 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:51-52 (registration)Definition of 'onedrive_read_file' in the TOOLS array with its description 'Read file content from OneDrive'. This is where the tool name and description are defined before being registered.
["onedrive_list_files", "List files and folders in OneDrive"], ["onedrive_read_file", "Read file content from OneDrive"],