@leonardocrdso/office365-mcp-server 1.0.0
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/LICENSE +21 -0
- package/README.md +140 -0
- package/build/index.js +33113 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@leonardocrdso/office365-mcp-server",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server for Microsoft 365 — Outlook, Calendar, OneDrive, SharePoint & Teams via Graph API",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "build/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"office365-mcp-server": "build/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"build/",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "bun run --watch src/index.ts",
|
|
17
|
+
"start": "bun run src/index.ts",
|
|
18
|
+
"build": "bun build src/index.ts --outdir build --target node",
|
|
19
|
+
"prepublishOnly": "bun run build"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"office365",
|
|
23
|
+
"microsoft-365",
|
|
24
|
+
"outlook",
|
|
25
|
+
"teams",
|
|
26
|
+
"onedrive",
|
|
27
|
+
"sharepoint",
|
|
28
|
+
"calendar",
|
|
29
|
+
"mcp",
|
|
30
|
+
"model-context-protocol",
|
|
31
|
+
"microsoft-graph",
|
|
32
|
+
"claude",
|
|
33
|
+
"ai"
|
|
34
|
+
],
|
|
35
|
+
"author": "leonardocrdso",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/leonardocrdso/office365-mcp-server.git"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/leonardocrdso/office365-mcp-server#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/leonardocrdso/office365-mcp-server/issues"
|
|
44
|
+
},
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"access": "public"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@azure/msal-node": "^3.8.8",
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
51
|
+
"zod": "^3.25.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^22.0.0",
|
|
55
|
+
"typescript": "^5.0.0"
|
|
56
|
+
}
|
|
57
|
+
}
|