{ "name": "@daghis/teamcity-mcp", "version": "2.12.2", "description": "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants", "mcpName": "io.github.Daghis/teamcity", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "teamcity-mcp": "dist/index.js" }, "engines": { "node": ">=20.19.0" }, "scripts": { "dev": "node ./node_modules/tsx/dist/cli.mjs watch src/index.ts", "dev:interactive": "bash scripts/interact.sh", "build": "node scripts/build.cjs", "build:tsc": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json", "bundle:analyze": "node scripts/codecov-bundle.cjs", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage --runInBand", "test:coverage:ci": "jest -c jest.ci.config.js --coverage --runInBand", "test:unit": "jest tests/unit", "test:integration": "node scripts/verify-integration-env.cjs && jest tests/integration", "test:ci": "jest --coverage --ci --reporters=default --reporters=jest-junit", "lint": "sh -c \"node ./node_modules/eslint/bin/eslint.js 'src/**/*.{ts,tsx}' 'tests/**/*.test.{ts,tsx,js}' --fix --no-error-on-unmatched-pattern\"", "lint:check": "node ./node_modules/eslint/bin/eslint.js 'src/**/*.{ts,tsx}' 'tests/**/*.test.{ts,tsx,js}' --no-error-on-unmatched-pattern", "format": "node ./node_modules/prettier/bin/prettier.cjs --write 'src/**/*.{ts,tsx,json,md}' 'tests/**/*.{ts,tsx,js,json,md}'", "format:check": "node ./node_modules/prettier/bin/prettier.cjs --check 'src/**/*.{ts,tsx,json,md}' 'tests/**/*.{ts,tsx,js,json,md}'", "typecheck": "node ./node_modules/typescript/bin/tsc --noEmit -p tsconfig.build.json", "typecheck:all": "node ./node_modules/typescript/bin/tsc --noEmit", "check": "npm run typecheck && npm run lint:check && npm run format:check", "clean": "rm -rf dist coverage", "fetch:swagger": "node ./node_modules/tsx/dist/cli.mjs scripts/fetch-swagger-spec.ts", "generate:client": "npm exec -y @openapitools/openapi-generator-cli@2.23.1 -- generate -c openapi-generator-config.json", "update:client": "npm run fetch:swagger -- --force && npm run generate:client", "e2e": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/index.ts", "e2e:build": "npm run build && node dist/e2e/index.js", "e2e:setup": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/setup-playground.ts", "e2e:cleanup": "node ./node_modules/tsx/dist/cli.mjs tests/e2e/cleanup.ts", "generate:notices": "node scripts/generate-third-party-notices.cjs" }, "keywords": [ "mcp", "teamcity", "ci", "cd", "ai", "claude", "cursor", "windsurf", "devops" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Daghis/teamcity-mcp.git" }, "homepage": "https://github.com/Daghis/teamcity-mcp#readme", "bugs": { "url": "https://github.com/Daghis/teamcity-mcp/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "axios": "~1.18.0", "axios-retry": "^4.5.0", "dotenv": "17.4.2", "tslib": "^2.8.1", "winston": "^3.11.0", "zod": "^4.3.5" }, "devDependencies": { "@esbuild-plugins/tsconfig-paths": "^0.1.2", "@eslint/js": "^10.0.1", "@trivago/prettier-plugin-sort-imports": "^6.0.1", "@types/jest": "^30.0.0", "@types/js-yaml": "^4.0.9", "@types/node": "^25.0.2", "@typescript-eslint/eslint-plugin": "^8.58.0", "@typescript-eslint/parser": "^8.58.0", "ajv": "^8.18.0", "ajv-formats": "^3.0.1", "esbuild": "^0.28.0", "eslint": "^10.1.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.0.1", "globals": "^17.4.0", "jest": "^30.1.3", "jest-junit": "^17.0.0", "js-yaml": "^4.1.1", "prettier": "^3.1.0", "ts-jest": "^29.4.9", "tsc-alias": "^1.8.8", "tsconfig-paths": "^4.2.0", "tsx": "^4.6.0", "typescript": "^6.0.2" }, "overrides": { "@hono/node-server": "^1.19.13", "axios": "~1.18.0", "body-parser": "^2.2.1", "follow-redirects": "^1.16.0", "glob@>=10.2.0 <10.5.0": "^10.5.0", "hono": "^4.12.14", "js-yaml@<4.0.0": "^3.14.2", "lodash-es": "^4.18.0", "picomatch@>=2 <2.3.2": "^2.3.2", "picomatch@>=4 <4.0.4": "^4.0.4", "undici": "^6.24.0" } }