-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 728 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
{
"name": "transcripts-mcp-server",
"version": "1.0.0",
"description": "MCP Server for Microsoft Teams meeting transcript retrieval via Microsoft Graph API with delegated OBO authentication",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"clean": "rimraf dist"
},
"dependencies": {
"@azure/msal-node": "^2.16.2",
"@modelcontextprotocol/sdk": "^1.12.1",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
}
}