package.jsonβ’2.47 kB
{
"name": "azure-ai-mcp-server",
"version": "1.0.0",
"description": "Mission-critical MCP server for Azure AI services with comprehensive CI/CD and chaos engineering",
"type": "module",
"main": "build/index.js",
"bin": {
"azure-ai-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "tsc --watch",
"start": "node build/index.js",
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"security:scan": "npm audit",
"chaos:test": "node scripts/chaos-tests.js",
"terraform:plan": "terraform plan",
"terraform:apply": "terraform apply",
"docker:build": "docker build -t azure-ai-mcp-server .",
"docker:run": "docker run -p 3000:3000 azure-ai-mcp-server"
},
"keywords": [
"mcp",
"azure",
"ai",
"openai",
"cognitive-services",
"mission-critical",
"chaos-engineering"
],
"author": "NexGuide AI",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@azure/openai": "^1.0.0-beta.12",
"@azure/identity": "^4.0.1",
"@azure/cognitiveservices-textanalytics": "^5.0.0",
"@azure/cognitiveservices-computervision": "^8.2.0",
"@azure/cognitiveservices-face": "^4.1.0",
"@azure/storage-blob": "^12.17.0",
"@azure/monitor-opentelemetry": "^1.0.0",
"axios": "^1.6.0",
"winston": "^3.11.0",
"dotenv": "^16.3.1",
"joi": "^17.11.0",
"rate-limiter-flexible": "^3.0.8",
"retry": "^0.13.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"supertest": "^6.3.3",
"nock": "^13.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/caiotk/nexguideai-azure-ai-mcp-server.git"
},
"bugs": {
"url": "https://github.com/caiotk/nexguideai-azure-ai-mcp-server/issues"
},
"homepage": "https://github.com/caiotk/nexguideai-azure-ai-mcp-server#readme"
}