@softeria/ms-365-mcp-server 0.88.1 → 0.88.2
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/README.md +4 -0
- package/dist/graph-tools.js +1 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -622,6 +622,10 @@ After cloning the repository, you may need to generate the client code from the
|
|
|
622
622
|
npm run generate
|
|
623
623
|
```
|
|
624
624
|
|
|
625
|
+
## Related Projects
|
|
626
|
+
|
|
627
|
+
- [ms-365-admin-mcp-server](https://github.com/okapi-ca/ms-365-admin-mcp-server) by [@okapi-ca](https://github.com/okapi-ca): companion server for admin/daemon scenarios using application permissions (client credentials flow), covering security alerts, audit logs, service health, and usage reports.
|
|
628
|
+
|
|
625
629
|
## Support
|
|
626
630
|
|
|
627
631
|
If you're having problems or need help:
|
package/dist/graph-tools.js
CHANGED
|
@@ -221,13 +221,8 @@ async function executeGraphTool(tool, config, graphClient, params, authManager)
|
|
|
221
221
|
while (nextLink && pageCount < maxPages && allItems.length < maxItems) {
|
|
222
222
|
logger.info(`Fetching page ${pageCount + 1} from: ${nextLink}`);
|
|
223
223
|
const url = new URL(nextLink);
|
|
224
|
-
const nextPath = url.pathname.replace("/v1.0", "");
|
|
224
|
+
const nextPath = url.pathname.replace("/v1.0", "") + url.search;
|
|
225
225
|
const nextOptions = { ...options };
|
|
226
|
-
const nextQueryParams = {};
|
|
227
|
-
for (const [key, value] of url.searchParams.entries()) {
|
|
228
|
-
nextQueryParams[key] = value;
|
|
229
|
-
}
|
|
230
|
-
nextOptions.queryParams = nextQueryParams;
|
|
231
226
|
const nextResponse = await graphClient.graphRequest(nextPath, nextOptions);
|
|
232
227
|
if (nextResponse?.content?.[0]?.text) {
|
|
233
228
|
const nextJsonResponse = JSON.parse(nextResponse.content[0].text);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.88.
|
|
3
|
+
"version": "0.88.2",
|
|
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",
|