-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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
42
43
44
45
46
47
48
49
{
"name": "@pnp/cli-microsoft365-mcp-server",
"version": "0.1.19",
"mcpName": "io.github.pnp/cli-microsoft365-mcp-server",
"description": "Model Context Protocol (MCP) server for CLI for Microsoft 365 that allows to use natural language to manage your Microsoft 365 tenant.",
"author": "Microsoft 365 & Power Platform Community",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"cli-microsoft365-mcp-server": "dist/index.js"
},
"type": "module",
"keywords": [
"Microsoft365",
"SharePointOnline",
"mcp",
"model-context-protocol",
"ai-assistant",
"cli-for-microsoft-365"
],
"maintainers": [
{
"name": "Adam Wójcik",
"email": "adam.wojcik.it@gmail.com",
"web": "https://github.com/Adam-it"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/pnp/cli-microsoft365-mcp-server.git"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"fuse.js": "7.1.0"
},
"devDependencies": {
"@types/node": "25.5.0",
"ts-node": "10.9.2",
"typescript": "6.0.2"
}
}