outlook-mcp/package.json
Seton Carmichael a7886b5b2b Initial commit: Outlook MCP Server v1.0.0
MCP server providing Microsoft Outlook integration via Graph API:
- Email: list, search, read, send, thread reconstruction
- Calendar: list, create, decline, cancel, delete events
- Folders: list, create, move emails
- Inbox rules: list, create, reorder
- MSAL device code flow auth with persistent token cache
- Test mode with mock data
- Comprehensive README with setup, config, and tool reference

20 MCP tools across 5 modules. Node.js >= 14. MIT license.
2026-06-21 19:39:31 -04:00

32 lines
792 B
JSON

{
"name": "outlook-mcp",
"version": "1.0.0",
"description": "MCP server for Claude to access Outlook data via Microsoft Graph API",
"main": "index.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"
},
"keywords": [
"claude",
"outlook",
"mcp",
"microsoft-graph",
"email"
],
"author": "",
"license": "MIT",
"dependencies": {
"@azure/msal-node": "^2.16.2",
"@modelcontextprotocol/sdk": "^1.1.0",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.10.2"
},
"engines": {
"node": ">=14.0.0"
}
}