UNPKG

msteams-mcp-server

Version:

Microsoft Teams MCP Server - Complete Teams integration for Claude Desktop and MCP clients with secure OAuth2 authentication and comprehensive team management

91 lines 2.51 kB
{ "name": "msteams-mcp-server", "version": "1.0.27", "description": "Microsoft Teams MCP Server - Complete Teams integration for Claude Desktop and MCP clients with secure OAuth2 authentication and comprehensive team management", "main": "dist/index.js", "type": "module", "bin": { "msteams-mcp-server": "bin/cli.js" }, "scripts": { "test": "node run-all-tests.js", "test-auth": "node test-auth-unit.js", "test-cli": "node test-cli.js", "test-mcp": "node test-mcp-tools.js", "test-inspector": "npx @modelcontextprotocol/inspector node dist/index.js", "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "postinstall": "node install.js", "prepare": "chmod +x bin/cli.js && npm run build", "install-global": "npm install -g .", "postpublish": "echo 'Package published! Test with: npx msteams-mcp-server --help'", "test-npx": "cd /tmp && npx -y msteams-mcp-server@latest --help", "test-verify": "npx msteams-mcp-server --verify-login", "version-bump": "node scripts/version-bump.js" }, "keywords": [ "mcp", "microsoft-teams", "teams", "office365", "graph-api", "oauth2", "collaboration", "claude-desktop", "siya-desktop", "ai-assistant", "chatbot", "productivity", "workplace" ], "author": { "name": "SIYA AI Team", "email": "support@siya.ai", "url": "https://siya.ai" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/siya-ai/msteams-mcp-server.git" }, "bugs": { "url": "https://github.com/siya-ai/msteams-mcp-server/issues" }, "homepage": "https://github.com/siya-ai/msteams-mcp-server#readme", "dependencies": { "@azure/msal-node": "^2.6.6", "@microsoft/microsoft-graph-client": "^3.0.7", "@modelcontextprotocol/sdk": "^1.10.1", "@types/cors": "^2.8.19", "cors": "^2.8.5", "express": "^5.1.0", "isomorphic-fetch": "^3.0.0", "keytar": "^7.9.0", "mime-types": "^2.1.35", "open": "^10.1.0", "typescript": "^5.0.4" }, "devDependencies": { "@types/express": "^5.0.3", "@types/isomorphic-fetch": "^0.0.36", "@types/mime-types": "^2.1.4", "@types/node": "^20.2.3", "ts-node": "^10.9.1", "tsx": "^4.19.4" }, "files": [ "bin/", "dist/", "README.md", "MIGRATION.md", "install.js", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }