package.json•2.21 kB
{
"name": "@floriscornel/teams-mcp",
"version": "0.3.3",
"description": "MCP server for Microsoft Graph Teams integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"teams-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "tsc",
"dev": "node --watch src/index.ts",
"auth": "node dist/index.js authenticate",
"auth:check": "node dist/index.js check",
"auth:logout": "node dist/index.js logout",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile.junit=test-results.xml",
"test:ui": "vitest --ui",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"format": "biome format --write .",
"bump": "npx npm-check-updates -i",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"microsoft-graph",
"teams",
"model-context-protocol"
],
"author": "Floris Cornel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/floriscornel/teams-mcp.git"
},
"homepage": "https://github.com/floriscornel/teams-mcp#readme",
"bugs": {
"url": "https://github.com/floriscornel/teams-mcp/issues"
},
"dependencies": {
"@azure/identity": "^4.10.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@modelcontextprotocol/sdk": "^1.13.3",
"@types/dompurify": "^3.2.0",
"@types/jsdom": "^21.1.7",
"@types/marked": "^6.0.0",
"dompurify": "^3.2.6",
"jsdom": "^26.1.0",
"marked": "^16.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/node": "^24.0.9",
"@types/sinon": "^17.0.4",
"@vitest/coverage-v8": "^3.2.4",
"msw": "^2.10.2",
"nock": "^14.0.5",
"sinon": "^21.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}