UNPKG

@softeria/ms-365-mcp-server

Version:

A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API

10 lines (9 loc) 273 B
function isDestructiveOperation(method, config) { const upper = method.toUpperCase(); if (!["POST", "PATCH", "PUT", "DELETE"].includes(upper)) return false; if (upper === "POST" && config?.readOnly) return false; return true; } export { isDestructiveOperation };