Midtown Toy Chest

File Finder

Microsoft 365 file discovery and delegated file actions for recent documents, targeted search, and script-friendly automation.

Scope

Uses delegated `Files.ReadWrite` for discovery and compact file operations without broad org-wide permissions.

Commands

  • recent and search for focused OneDrive lookup
  • mkdir, rename, move, and delete for compact file operations
  • --output json for automation

Auth

Built on the shared Windows-first auth foundation with WAM-first sign-in and the shared Graph client pattern.

Quick Start

$env:FILE_FINDER_CLIENT_ID='e02be6f7-063a-46a6-b2cc-109d5f51055c' $env:FILE_FINDER_TENANT_ID='a3599b15-c39c-4b41-a219-7e24dd5b5190' $env:FILE_FINDER_SCOPES='Files.ReadWrite' $env:FILE_FINDER_AUTH_MODE='wam' $env:FILE_FINDER_ALLOW_BROKER='true' .\invoke.ps1 recent --limit 10 .\invoke.ps1 mkdir "Codex Folder"

Use JSON output for automation and pair the item ids from discovery commands with rename, move, or delete.