# Microsoft 365 Files (npm · @mindstone/mcp-server-microsoft-files)

Microsoft 365 OneDrive files via Graph: list, search, get, upload, download, share, read text.

- Trust score: 75/100 (medium)
- Change this week: +29
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `@mindstone/mcp-server-microsoft-files`: 75/100 (this document), [markdown](https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files.md), [page](https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files)

## Channel facts

- Registry: `npm`
- Package: `@mindstone/mcp-server-microsoft-files`
- Version: `0.1.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects hono 4.12.33, reached via @modelcontextprotocol/sdk > hono. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (105 of 109), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 84/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to mindstone/mcp-servers).
  - License check failed: the license (FSL-1.1-MIT) isn't a recognized OSI-approved license.
  - Actively maintained (last published 31 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 555 tokens (~42/item across 13 items; 13 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add mindstone-mcp-server-microsoft-files -- npx -y @mindstone/mcp-server-microsoft-files
```

### Codex

```bash
codex mcp add mindstone-mcp-server-microsoft-files -- npx -y @mindstone/mcp-server-microsoft-files
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mindstone-mcp-server-microsoft-files": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@mindstone/mcp-server-microsoft-files"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mindstone-mcp-server-microsoft-files --command npx --arg -y --arg @mindstone/mcp-server-microsoft-files
```

### Hermes

```yaml
mcp_servers:
  mindstone-mcp-server-microsoft-files:
    command: "npx"
    args: ["-y", "@mindstone/mcp-server-microsoft-files"]
```

### Other

```json
{
  "mcpServers": {
    "mindstone-mcp-server-microsoft-files": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-microsoft-files"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-04 (score 75, −1)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail

### 2026-08-03 (score 76, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 75, +49)

- [security improvement] Malware scan: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] The attested source repository moved: mindstone/mcp-servers
- [functional regression] License: unverified → fail
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: FSL-1.1-MIT

### 2026-08-01 (score 26, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (13)

### `list_files` (~56 tokens)

List files and folders in OneDrive. Defaults to root folder.

Input parameters:

- `path` (string): Folder path (e.g., "/Documents") or item ID
- `top` (number): Max items to return (default: 50)

### `get_file` (~29 tokens)

Get metadata for a specific file or folder.

Input parameters:

- `path` (string): File path or item ID

### `download_file` (~33 tokens)

Get a download URL for a file (valid for short period).

Input parameters:

- `path` (string): File path or item ID

### `search_files` (~42 tokens)

Search for files in OneDrive by name or content.

Input parameters:

- `query` (string): Search query
- `top` (number): Max results (default: 25)

### `upload_file` (~55 tokens)

Upload a file to OneDrive (text content only, max 4MB).

Input parameters:

- `content` (string): File content (text)
- `path` (string): Destination path including filename (e.g., "/Documents/note.txt")

### `create_folder` (~36 tokens)

Create a new folder in OneDrive.

Input parameters:

- `path` (string): Full path for new folder (e.g., "/Documents/NewFolder")

### `delete_file` (~31 tokens)

Delete a file or folder from OneDrive.

Input parameters:

- `path` (string): File/folder path or item ID

### `move_file` (~56 tokens)

Move a file or folder to a new location.

Input parameters:

- `destinationPath` (string): New parent folder path
- `newName` (string): Optional new name
- `sourcePath` (string): Current file/folder path or ID

### `copy_file` (~55 tokens)

Copy a file or folder to a new location.

Input parameters:

- `destinationPath` (string): Destination folder path
- `newName` (string): Optional new name
- `sourcePath` (string): Current file/folder path or ID

### `get_recent` (~27 tokens)

Get recently accessed files.

Input parameters:

- `top` (number): Max items (default: 25)

### `get_shared` (~30 tokens)

Get files shared with you by others.

Input parameters:

- `top` (number): Max items (default: 25)

### `share_file` (~58 tokens)

Create a sharing link for a file or folder.

Input parameters:

- `path` (string): File/folder path or ID
- `scope` (string): Who can access (default: organization)
- `type` (string): Link type (default: view)

### `read_text_file` (~47 tokens)

Read the contents of a text file directly.

Input parameters:

- `maxSize` (number): Max bytes to read (default: 100KB)
- `path` (string): File path or ID

## Diagnostics

Captured diagnostic sections: Provenance, Vulnerabilities, Dependencies. The full working is on the page: https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files#diagnostics

## Score history

- 2026-08-04: 75
- 2026-08-03: 76
- 2026-08-02: 75
- 2026-08-01: 26
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@mindstone/mcp-server-microsoft-files
- Socket report: https://socket.dev/npm/package/@mindstone/mcp-server-microsoft-files
- Repository: https://github.com/mindstone/mcp-servers
- Changelog RSS feed: https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mindstone-mcp-server-microsoft-files/mindstone-mcp-server-microsoft-files
