UNPKG

msexchange-mcp

Version:

MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API

65 lines (64 loc) 1.67 kB
{ "name": "msexchange-mcp", "version": "1.10.3", "description": "MCP server for Microsoft Exchange/Outlook email operations via Microsoft Graph API", "type": "module", "main": "dist/index.js", "bin": { "msexchange-mcp": "dist/cli.js" }, "exports": { ".": "./dist/index.js", "./server": "./dist/server.js" }, "scripts": { "dev": "tsx scripts/dev.ts", "build": "tsc -p tsconfig.json", "prepublishOnly": "npm run build && npm test", "release": "node scripts/release.ts", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit" }, "keywords": [ "mcp", "exchange", "outlook", "microsoft", "graph", "email" ], "author": "Olivier Debeuf De Rijcker", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/olivierdebeufderijcker/exchange-mcp.git" }, "homepage": "https://github.com/olivierdebeufderijcker/exchange-mcp#readme", "bugs": { "url": "https://github.com/olivierdebeufderijcker/exchange-mcp/issues" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@azure/identity": "^4.10.1", "@azure/keyvault-secrets": "^4.10.0", "@azure/msal-node": "^3.6.0", "@microsoft/microsoft-graph-client": "^3.0.7", "dotenv": "^16.5.0", "fastmcp": "^3.3.0", "zod": "^3.25.64" }, "devDependencies": { "@types/node": "^24.0.1", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^9.29.0", "nodemon": "^3.1.10", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^3.2.3" } }