io.github.0xka13b/ms-sharepoint-mcp
NPM · MS-SHAREPOINT-MCP · SCANNED AUG 3
Microsoft SharePoint MCP server — access sites, lists, and documents through Microsoft Graph.
Available components
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. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (110 of 111), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (110 of 111), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 55 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 2012 tokens (~87/item across 23 items; 23 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · ms-sharepoint-mcp
claude mcp add 0xka13b-ms-sharepoint-mcp -- npx -y ms-sharepoint-mcp
codex mcp add 0xka13b-ms-sharepoint-mcp -- npx -y ms-sharepoint-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"0xka13b-ms-sharepoint-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"ms-sharepoint-mcp"
],
"enabled": true
}
}
} openclaw mcp add 0xka13b-ms-sharepoint-mcp --command npx --arg -y --arg ms-sharepoint-mcp
mcp_servers:
0xka13b-ms-sharepoint-mcp:
command: "npx"
args: ["-y", "ms-sharepoint-mcp"] {
"mcpServers": {
"0xka13b-ms-sharepoint-mcp": {
"command": "npx",
"args": [
"-y",
"ms-sharepoint-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +48
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Install scripts: unverified → pass ▲ security
- Malware scan: unverified → pass ▲ security
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Licence: MIT functional
- 31 Jul 26 −25
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 110 packages
110 packages in the resolved dependency tree · 110 deprecated · 39 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
create_folder ~85
Create a folder in a SharePoint document library.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| folder_name | string | yes | Name of the new folder. |
| parent_path | string | — | Parent folder path, e.g. '/Shared Documents'. Defaults to drive root. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
create_item ~79
Create a new item in a SharePoint list.
| Name | Type | Req | Description |
|---|---|---|---|
| fields | object | yes | Key-value map of field internal names to values, e.g. { "Title": "New item", "Status": "Active" }. |
| list_id | string | yes | List ID or display name. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
create_site ~271
Create a new SharePoint site. Team sites are provisioned via a Microsoft 365 Group (requires Group.ReadWrite.All). Communication sites are created via the SharePoint REST API (requires Sites.FullControl.All).
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | Optional description for the site. |
| display_name | string | yes | Display name for the new site, e.g. 'Marketing Hub'. |
| hostname | string | — | SharePoint hostname required for communication sites, e.g. 'contoso.sharepoint.com'. |
| mail_nickname | string | — | Email alias for the M365 group (team sites only). Must be unique across the tenant and contain no spaces, e.g. 'marketing-hub'. Derived from display_name if omitted. |
| owners | array | — | UPNs or user IDs to set as site owners (team sites only), e.g. ['[email protected]']. |
| site_type | string | yes | 'team' creates a group-connected Team site. 'communication' creates a standalone Communication site. |
| site_url_alias | string | — | URL alias for the communication site path, e.g. 'marketing-hub' → /sites/marketing-hub. Derived from display_name if omitted. |
| visibility | string | — | Team site visibility (default: Private). Ignored for communication sites. |
No output schema declared.
No examples provided.
delete_file ~80
Permanently delete a file or folder from a SharePoint document library.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| file_path | string | yes | Path of the file or folder to delete, e.g. '/Shared Documents/old-report.pdf'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
delete_item ~56
Permanently delete a SharePoint list item.
| Name | Type | Req | Description |
|---|---|---|---|
| item_id | string | yes | List item ID to delete. |
| list_id | string | yes | List ID or display name. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
download_file ~77
Download a file from a SharePoint document library. Returns content as base64.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| file_path | string | yes | File path in the drive, e.g. '/Shared Documents/report.pdf'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_document ~84
Retrieve both metadata and text content of a SharePoint file in one call. Optimised for AI consumption of documents.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| file_path | string | yes | File path in the drive, e.g. '/Shared Documents/report.txt'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_drive ~66
Get the default document library (drive) for a SharePoint site, or a specific drive when drive_id is supplied.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Specific drive ID. Omit to get the site's default document library. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_file_content ~87
Retrieve the raw text content of a file in SharePoint. Best for plain-text, CSV, JSON, or Markdown files.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| file_path | string | yes | File path in the drive, e.g. '/Shared Documents/data.csv'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_file_metadata ~85
Get file properties (name, size, MIME type, created/modified dates, web URL) without downloading content.
| Name | Type | Req | Description |
|---|---|---|---|
| drive_id | string | — | Drive ID. Omit to use the default drive. |
| file_path | string | yes | File path in the drive, e.g. '/Shared Documents/report.pdf'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_item ~64
Get a single SharePoint list item by its ID, including all field values.
| Name | Type | Req | Description |
|---|---|---|---|
| item_id | string | yes | List item ID (numeric string). |
| list_id | string | yes | List ID or display name. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_list ~59
Get metadata and column schema for a specific SharePoint list or library.
| Name | Type | Req | Description |
|---|---|---|---|
| list_id | string | yes | List ID (GUID) or list display name (e.g. 'Shared Documents'). |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
get_site ~76
Get metadata for a SharePoint site by its Graph site ID or hostname:path form.
| Name | Type | Req | Description |
|---|---|---|---|
| site_id | string | yes | Site identifier — either a Graph GUID (e.g. 'contoso.sharepoint.com,abc123,xyz456') or 'hostname:/path' (e.g. 'contoso.sharepoint.com:/sites/hr'). |
No output schema declared.
No examples provided.
get_site_id ~77
Resolve a SharePoint site hostname and server-relative path to its Graph GUID. Use the returned id with other tools.
| Name | Type | Req | Description |
|---|---|---|---|
| hostname | string | yes | SharePoint hostname, e.g. 'contoso.sharepoint.com'. |
| path | string | yes | Server-relative site path, e.g. '/sites/hr'. Use '/' for the root site. |
No output schema declared.
No examples provided.
get_user_profile ~33
Get the signed-in user's Microsoft 365 profile (id, displayName, mail, jobTitle, department, etc.).
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
list_columns ~44
List all column definitions for a SharePoint list.
| Name | Type | Req | Description |
|---|---|---|---|
| list_id | string | yes | List ID or display name. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
list_items ~132
Query items in a SharePoint list with optional OData $filter, $select, and pagination.
| Name | Type | Req | Description |
|---|---|---|---|
| filter | string | — | OData $filter expression applied to item fields, e.g. "fields/Status eq 'Active'". |
| list_id | string | yes | List ID or display name. |
| select | string | — | Comma-separated field names to include in each item's fields object. |
| site_id | string | yes | SharePoint Graph site ID. |
| skip | integer | — | Number of items to skip (default 0). |
| top | integer | — | Maximum items to return (default 100). |
No output schema declared.
No examples provided.
list_lists ~33
List all lists and document libraries in a SharePoint site.
| Name | Type | Req | Description |
|---|---|---|---|
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
list_sites ~81
Search and list SharePoint sites accessible to the signed-in user.
| Name | Type | Req | Description |
|---|---|---|---|
| search | string | — | Keyword to filter sites by display name. Omit or use '*' to list all accessible sites. |
| skip | integer | — | Number of results to skip for pagination (default 0). |
| top | integer | — | Maximum number of sites to return (default 50). |
No output schema declared.
No examples provided.
search ~107
Run a Microsoft Search query across SharePoint content with full control over entity types and result shape.
| Name | Type | Req | Description |
|---|---|---|---|
| entity_types | array | — | Entity types to search (default: ['driveItem', 'listItem']). |
| fields | array | — | Specific managed properties to include in results. |
| from | integer | — | Offset for pagination (default 0). |
| query_string | string | yes | Search query string. KQL syntax supported. |
| size | integer | — | Number of results (default 25). |
No output schema declared.
No examples provided.
search_sharepoint ~122
Focused full-text search across SharePoint lists and document libraries with ranked results. Supports KQL syntax (e.g. 'budget filetype:xlsx', 'author:"John Smith"').
| Name | Type | Req | Description |
|---|---|---|---|
| from | integer | — | Pagination offset (default 0). |
| query | string | yes | Search query. KQL syntax supported. |
| site_url | string | — | Scope the search to a specific SharePoint site by its URL, e.g. 'https://contoso.sharepoint.com/sites/hr'. |
| size | integer | — | Number of results (default 25). |
No output schema declared.
No examples provided.
update_item ~74
Update one or more fields of an existing SharePoint list item.
| Name | Type | Req | Description |
|---|---|---|---|
| fields | object | yes | Fields to update as internal-name to value pairs. |
| item_id | string | yes | List item ID. |
| list_id | string | yes | List ID or display name. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.
upload_file ~140
Upload a file to a SharePoint document library. Files over 4 MB are automatically chunked via an upload session.
| Name | Type | Req | Description |
|---|---|---|---|
| conflict_behavior | string | — | How to handle name conflicts (default: replace). |
| content_base64 | string | yes | Base64-encoded file content. |
| content_type | string | — | MIME type of the file (default: application/octet-stream). |
| drive_id | string | — | Drive ID. Omit to use the site's default document library. |
| file_path | string | yes | Destination path including filename, e.g. '/Shared Documents/reports/Q1.xlsx'. |
| site_id | string | yes | SharePoint Graph site ID. |
No output schema declared.
No examples provided.