package.json•2.06 kB
{
"name": "testrail-mcp-server",
"version": "0.1.6",
"description": "A Model Context Protocol (MCP) server that provides TestRail integration tools for AI assistants like Cursor",
"license": "MIT",
"type": "commonjs",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"testrail-mcp-server": "dist/server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"testrail",
"mcp",
"model-context-protocol",
"ai",
"cursor",
"testing",
"test-management",
"automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Derrbal/testrail-mcp.git"
},
"bugs": {
"url": "https://github.com/Derrbal/testrail-mcp/issues"
},
"homepage": "https://github.com/Derrbal/testrail-mcp#readme",
"author": "Bohdan Derbal <bderbal07@gmail.com>",
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"dev": "tsx src/simple-server.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"security:scan": "node scripts/security-scan.js",
"security:scan:ci": "node scripts/security-scan.js",
"prepublishOnly": "npm run build && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"axios": "^1.6.8",
"axios-retry": "^3.9.1",
"dotenv": "^16.4.5",
"form-data": "^4.0.0",
"pino": "^9.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nock": "^13.5.0",
"prettier": "^3.3.2",
"tsup": "^8.0.2",
"tsx": "^4.16.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}