onedrive_set_scope
Limit OneDrive sync to a single folder to restrict access scope and prevent syncing other folders.
Instructions
Restrict OneDrive access to a folder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:59-59 (registration)Tool 'onedrive_set_scope' is registered in the TOOLS array with description 'Restrict OneDrive access to a folder'.
["onedrive_set_scope", "Restrict OneDrive access to a folder"], - server.js:106-110 (handler)Generic stub handler for all tools including onedrive_set_scope; returns an inspection stub message. The real server is a native binary.
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" }], })); }