-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "m365-mcp",
"version": "2.0.0",
"description": "MCP server for Claude to access Microsoft 365 (Outlook, OneDrive, Power Automate) via Microsoft Graph API",
"main": "index.js",
"bin": {
"m365-mcp": "./index.js",
"m365-mcp-auth": "./outlook-auth-server.js"
},
"scripts": {
"start": "node index.js",
"auth-server": "node outlook-auth-server.js",
"test-mode": "USE_TEST_MODE=true node index.js",
"inspect": "npx @modelcontextprotocol/inspector node index.js",
"test": "jest"
},
"keywords": [
"claude",
"outlook",
"onedrive",
"power-automate",
"microsoft-365",
"mcp",
"microsoft-graph",
"email"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.10.2",
"jest": "^29.7.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}