Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Manage files on OneDrive and SharePoint via Microsoft Graph API - upload, download, list, search, and organize network documentation and artifacts. Use when uploading reports to SharePoint, retrieving network docs from OneDrive, organizing config backups, or searching for topology diagrams
.claude/skills/automateyournetwork-msgraph-files/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -32% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 11% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 451% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 130% | 0% |
@softeria/ms-365-mcp-server (MIT) npx -y @softeria/ms-365-mcp-server --read-only --enabled-tools 'drive-item|folder-files'
handles the device-code sign-in itself via its login tool.
> Version 2.0.0 replaced a package that did not exist. Until spec 093 this skill invoked > npx -y @anthropic-ai/microsoft-graph-mcp, which 404s on npm, and documented seven > graph_* tool names that exist in no server. Every call it described failed. The tool names > below were read from the live server's tools/list, not recalled.
--enabled-tools filter is mandatoryThe unfiltered server exposes 188 tools measured at ~225,355 tokens — 45× NetClaw's 5,000 token manifest ceiling. It is unusable without a filter. The filter above lands 12 tools at ~4,599 tokens, which fits with little room to spare, so keep it narrow.
Read from the running server, --read-only with the filter above:
| Tool | What it does | |---|---| | list-folder-files | contents of a drive folder | | get-drive-item | metadata for one item by id or path | | list-drive-item-versions | version history of an item | | list-drive-item-permissions | who an item is shared with | | list-drive-item-thumbnails | available thumbnail renditions | | login / verify-login / logout | device-code sign-in and session state | | list-accounts / select-account / remove-account | multi-account handling |
There are no graph_* tools. If you find yourself reaching for one, it came from this skill's old text and does not exist.
verify-login — is there a live session? If not, login and surface the device code tothe operator; never fabricate a sign-in.
list-folder-files from the drive root, then descendget-drive-item for the candidate — size, timestamps, pathlist-drive-item-permissions if the question is about sharing or exposurelist-drive-item-versions if the question is "what changed and when"--read-only strips them, and this skillmust not offer them. Writing a file is msgraph-visio's narrower, write-enabled invocation.
this surface. "No permissions listed" is not "not shared."
account selection both narrow what is visible; state which account you were signed in as.
list-accounts returning one account is not proof there is only one tenant.The tool names and manifest cost are measured; the calls themselves are not. Verifying a real fetch needs an M365 tenant and an app registration, which this environment does not have. Treat the workflows as correct-by-construction until run against a live tenant.
| Skill | How They Work Together | |-------|----------------------| | msgraph-visio | Writing a .vsdx back to OneDrive (write-enabled invocation) | | document-generation | Produces the documents this skill locates | | gait-session-tracking | Record which account and item were accessed |
MS365_MCP_CLIENT_ID — Entra ID app registration (client) IDMS365_MCP_TENANT_ID — tenant ID, or common for multi-tenantOther measured skills in the registry, with their headline benchmark lift.