outlook-mcp/package.json
Seton Carmichael ba45f57b39 v1.0.1: Fix accept-event registration, edit-rule-sequence import, timezone config
Bug fixes (non-breaking):
- Register accept-event tool in calendar module (was dead code)
- Add missing callGraphAPI + ensureAuthenticated imports to rules/index.js
  (edit-rule-sequence would throw ReferenceError at runtime)
- Make calendar event timezone configurable via MS_TIMEZONE env var
  (was hardcoded to UTC; default is now Eastern Standard Time)

Version bump: 1.0.0 → 1.0.1
README updated: 21 tools, MS_TIMEZONE in config table, known issues pruned
2026-06-21 19:43:54 -04:00

32 lines
792 B
JSON

{
"name": "outlook-mcp",
"version": "1.0.1",
"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"
}
}