Maintenance in progress: we are indexing a large batch of new skills. Some pages may load slowly or briefly show no results. Nothing is lost, and everything is back to normal within the hour.

Onedrive

Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files.

majiayu000 ba9709b 2 files · 1.6 KB Updated 567 repo stars

File contents

OneDrive

Microsoft cloud storage.

Environment

export MICROSOFT_ACCESS_TOKEN="xxxxxxxxxx"

List Root Files

curl "https://graph.microsoft.com/v1.0/me/drive/root/children" -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN"

Upload File

curl -X PUT "https://graph.microsoft.com/v1.0/me/drive/root:/filename.txt:/content" \
  -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" \
  -H "Content-Type: text/plain" \
  --data-binary @localfile.txt

Download File

curl "https://graph.microsoft.com/v1.0/me/drive/items/{itemId}/content" \
  -H "Authorization: Bearer $MICROSOFT_ACCESS_TOKEN" -o downloaded.txt

Links

majiayu000/claude-skill-registry-data/tree/main/integration/onedrive commit ba9709bca3

Frequently asked questions

npx skillmds add majiayu000/onedrive