@softeria/ms-365-mcp-server 0.124.0 → 0.124.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/graph-tools.js +3 -0
- package/package.json +1 -1
package/dist/graph-tools.js
CHANGED
|
@@ -294,6 +294,9 @@ async function executeGraphTool(tool, config, graphClient, params, authManager)
|
|
|
294
294
|
const encodedValue = encodeURIComponent(paramValue).replace(/%3D/g, "=");
|
|
295
295
|
path2 = path2.replace(`{${paramName}}`, encodedValue).replace(`:${paramName}`, encodedValue).replace(`{${camelCaseParamName}}`, encodedValue).replace(`:${camelCaseParamName}`, encodedValue);
|
|
296
296
|
logger.info(`Path param fallback: replaced :${camelCaseParamName} with encoded value`);
|
|
297
|
+
} else if (isOdataParam) {
|
|
298
|
+
queryParams[fixedParamName] = `${paramValue}`;
|
|
299
|
+
logger.info(`OData param fallback: forwarded ${fixedParamName}=${paramValue}`);
|
|
297
300
|
}
|
|
298
301
|
}
|
|
299
302
|
clampTopQueryParam(queryParams);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.124.
|
|
3
|
+
"version": "0.124.1",
|
|
4
4
|
"description": " A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|