UNPKG

defect-inspection-tools-mcp-server

Version:

Defect inspection tools server handling defect detection, analysis, and reporting with AI/ML capabilities for quality control

70 lines (69 loc) 2.41 kB
{ "name": "defect-inspection-tools-mcp-server", "version": "1.0.9", "description": "Defect inspection tools server handling defect detection, analysis, and reporting with AI/ML capabilities for quality control", "main": "dist/index.js", "type": "module", "bin": { "defect-inspection-tools-mcp-server": "bin/cli.js", "defect-inspection-tools-test": "npx-test.js" }, "scripts": { "test": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/index.js", "test:unit": "tsx --test tests/unit/**/*.test.ts", "test:integration": "tsx --test tests/integration/**/*.test.ts", "test:performance": "tsx --test tests/performance/**/*.test.ts", "test:coverage": "c8 --reporter=text --reporter=html tsx --test tests/unit/**/*.test.ts tests/integration/**/*.test.ts", "test:all": "npm run test:unit && npm run test:integration && npm run test:performance", "test:watch": "tsx --test --watch tests/unit/**/*.test.ts", "test:middleware": "tsx --test tests/unit/middleware/*.test.ts", "test:services": "tsx --test tests/unit/services/*.test.ts", "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "postinstall": "node install.js", "prepare": "chmod +x bin/cli.js npx-test.js && npm run build", "install-global": "npm install -g .", "postpublish": "echo 'Package published! Note: The npx test may not work immediately as the registry needs time to update.'", "test-npx": "cd /tmp && npx -y defect-inspection-tools-mcp-server@latest --help", "version-bump": "node scripts/version-bump.js", "lint": "echo 'Linting not configured yet'", "typecheck": "tsc --noEmit" }, "keywords": [ "mcp", "defect-inspection", "quality-control", "ai-tools" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.3", "axios": "^1.6.2", "dotenv": "^16.5.0", "mongodb": "^6.16.0", "openai": "^4.104.0", "typescript": "^5.0.4", "typesense": "^2.0.3", "winston": "^3.11.0" }, "devDependencies": { "@types/mongodb": "^4.0.6", "@types/node": "^20.19.6", "@types/winston": "^2.4.4", "c8": "^10.1.3", "ts-node": "^10.9.1", "tsx": "^4.19.4" }, "files": [ "bin/", "dist/", "README.md", "install.js", "npx-test.js" ], "engines": { "node": ">=18.0.0" } }