package.json•2.42 kB
{
"name": "copilot-studio-agent-direct-line-mcp",
"version": "1.0.8",
"description": "VS Code MCP server for Microsoft Copilot Studio Agent integration via Direct Line 3.0 API with HTTP transport and OAuth authentication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"copilot-studio-agent-direct-line-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
".env.example"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mcp",
"vscode",
"copilot-studio",
"direct-line",
"bot-framework",
"microsoft",
"model-context-protocol",
"http-transport",
"oauth",
"azure-entra-id",
"chatbot",
"conversational-ai"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bradcstevens/copilot-studio-agent-direct-line-mcp.git"
},
"bugs": {
"url": "https://github.com/bradcstevens/copilot-studio-agent-direct-line-mcp/issues"
},
"homepage": "https://github.com/bradcstevens/copilot-studio-agent-direct-line-mcp#readme",
"dependencies": {
"@azure/msal-node": "^2.16.3",
"@modelcontextprotocol/sdk": "^1.19.1",
"axios": "^1.12.2",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"express-session": "^1.18.2",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.7.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}