@softeria/ms-365-mcp-server 0.19.0 → 0.19.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/README.md +8 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -313,6 +313,14 @@ Run the verification script to check all code quality requirements:
|
|
|
313
313
|
npm run verify
|
|
314
314
|
```
|
|
315
315
|
|
|
316
|
+
### For Developers
|
|
317
|
+
|
|
318
|
+
After cloning the repository, you may need to generate the client code from the Microsoft Graph OpenAPI specification:
|
|
319
|
+
|
|
320
|
+
```bash
|
|
321
|
+
npm run generate
|
|
322
|
+
```
|
|
323
|
+
|
|
316
324
|
## Support
|
|
317
325
|
|
|
318
326
|
If you're having problems or need help:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softeria/ms-365-mcp-server",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.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",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"generate": "node bin/generate-graph-client.mjs",
|
|
12
|
-
"postinstall": "npm run generate",
|
|
13
12
|
"build": "tsup",
|
|
14
13
|
"test": "vitest run",
|
|
15
14
|
"test:watch": "vitest",
|