Sharepoint (npm) MCP Server

server-sharepoint npm v1.0.14

Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

[![Node.js Version](https://img.shields.io/badge/node-%3E%3D22.14.0-brightgreen.svg?style=flat-square)](https://nodejs.org/en/download/) [![SharePoint REST API](https://img.shields.io/badge/SharePoint-REST%20API-blue?style=flat-square)](https://learn.mic

Trust grade
B
81/100
Last scanned get badge →
Trust
B · 81/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 89 − adoption risk = 81/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 11 = 89. What the published surface and source actually contain:

PointsWhat was foundCategory
−11 Untrusted input concatenated into a command sink ×3 MTC-SRC-009 injection

2. Client adoption risk — 89 − 8 = 81. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−2 publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 8

high Shell/command execution in server code (build/azure_cert_auth.js)MTC-SRC-002

In the server's implementation (`build/azure_cert_auth.js:67`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: require('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'inherit' });

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/azure_cert_auth.js

high Shell/command execution in server code (build/src/azure_cert_auth.js)MTC-SRC-002

In the server's implementation (`build/src/azure_cert_auth.js:60`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const result = require('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'pipe',

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/src/azure_cert_auth.js

high Shell/command execution in server code (build/src/graph_cert_auth.js)MTC-SRC-002

In the server's implementation (`build/src/graph_cert_auth.js:60`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } = require('child_process'); // Create temporary directory if it doesn't exist const tempDir

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/src/graph_cert_auth.js

high Shell/command execution in server code (build/src/jwt_utils.js)MTC-SRC-002

In the server's implementation (`build/src/jwt_utils.js:60`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } = require('child_process'); // First, check if the certificate exists in the store const ch

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/src/jwt_utils.js

high Shell/command execution in server code (src/azure_cert_auth.ts)MTC-SRC-002

In the server's implementation (`src/azure_cert_auth.ts:29`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const result = require('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'pipe',

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/azure_cert_auth.ts

medium Untrusted input concatenated into a command sink (build/azure_cert_auth.js)MTC-SRC-009

In the server's implementation (`build/azure_cert_auth.js:67`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: equire('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'inherit' }); if (fs.exi

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/azure_cert_auth.js

medium Untrusted input concatenated into a command sink (build/src/azure_cert_auth.js)MTC-SRC-009

In the server's implementation (`build/src/azure_cert_auth.js:60`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: equire('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'pipe', encoding

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server build/src/azure_cert_auth.js

medium Untrusted input concatenated into a command sink (src/azure_cert_auth.ts)MTC-SRC-009

In the server's implementation (`src/azure_cert_auth.ts:29`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: equire('child_process').execSync(`powershell -Command "${psCommand}"`, { stdio: 'pipe', encoding

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/azure_cert_auth.ts

Tools 57

Each tool and what it can reach — statically extracted from the published source.

  • addGroupMemberno sensitive capability
  • addNavigationLinkno sensitive capability
  • addViewFieldno sensitive capability
  • batchCreateListItemsno sensitive capability
  • batchDeleteListItemsno sensitive capability
  • batchUpdateListItemsno sensitive capability
  • createListno sensitive capability
  • createListContentTypeno sensitive capability
  • createListFieldno sensitive capability
  • createListItemno sensitive capability
Show 47 more tools ↓
  • createListViewno sensitive capability
  • createModernPageno sensitive capability
  • deleteListno sensitive capability
  • deleteListContentTypeno sensitive capability
  • deleteListFieldno sensitive capability
  • deleteListItemno sensitive capability
  • deleteListViewno sensitive capability
  • deleteModernPageno sensitive capability
  • deleteNavigationLinkno sensitive capability
  • deleteSiteContentTypeno sensitive capability
  • deleteSubsiteno sensitive capability
  • getAllSitesno sensitive capability
  • getGlobalNavigationLinksno sensitive capability
  • getGroupMembersno sensitive capability
  • getListContentTypeno sensitive capability
  • getListContentTypesno sensitive capability
  • getListFieldsno sensitive capability
  • getListItemsno sensitive capability
  • getListsno sensitive capability
  • getListViewsno sensitive capability
  • getModernPageno sensitive capability
  • getModernPagesno sensitive capability
  • getQuickNavigationLinksno sensitive capability
  • getRegionalSettingsno sensitive capability
  • getSiteno sensitive capability
  • getSiteCollectionFeaturesno sensitive capability
  • getSiteContentTypeno sensitive capability
  • getSiteContentTypesno sensitive capability
  • getSiteFeatureno sensitive capability
  • getSiteFeaturesno sensitive capability
  • getSiteGroupsno sensitive capability
  • getSiteUsersno sensitive capability
  • getSubsitesno sensitive capability
  • getViewFieldsno sensitive capability
  • moveViewFieldTono sensitive capability
  • removeAllViewFieldsno sensitive capability
  • removeGroupMemberno sensitive capability
  • removeViewFieldno sensitive capability
  • searchSharePointSiteno sensitive capability
  • updateListno sensitive capability
  • updateListContentTypeno sensitive capability
  • updateListFieldno sensitive capability
  • updateListItemno sensitive capability
  • updateListViewno sensitive capability
  • updateNavigationLinkno sensitive capability
  • updateSiteno sensitive capability
  • updateSiteContentTypeno sensitive capability

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.0.14 latest B 81/100 8 1.13.0 2026-09-07

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: B · 81/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/server-sharepoint/badge.svg)](https://mcptrustchecker.com/registry/server-sharepoint)
HTML
<a href="https://mcptrustchecker.com/registry/server-sharepoint"><img src="https://mcptrustchecker.com/registry/server-sharepoint/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/server-sharepoint/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan server-sharepoint --online

Use the free API → How scoring works

Other implementations of Sharepoint 6

Independent packages implementing the same tool, scanned with the same engine. Compare all 7 side by side →

More in API Development