{ "name": "@verygoodplugins/mcp-freescout", "version": "3.1.0", "description": "MCP server for FreeScout ticket management and workflow automation", "main": "dist/index.js", "type": "module", "mcpName": "io.github.verygoodplugins/mcp-freescout", "bin": { "mcp-freescout": "dist/index.js" }, "engines": { "node": ">=24.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc && node -e \"require('node:fs').chmodSync('dist/index.js', 0o755)\"", "dev": "tsx watch src/index.ts", "start": "node dist/index.js", "test": "vitest run --exclude src/__tests__/integration.test.ts", "test:coverage": "vitest run --coverage --exclude src/__tests__/integration.test.ts", "test:integration": "vitest run src/__tests__/integration.test.ts", "test:all": "vitest run", "lint": "eslint src/", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "mcp-server", "modelcontextprotocol", "freescout", "helpdesk", "ticket-management", "workflow-automation" ], "author": "Very Good Plugins", "license": "GPL-3.0", "repository": { "type": "git", "url": "git+https://github.com/verygoodplugins/mcp-freescout.git" }, "homepage": "https://github.com/verygoodplugins/mcp-freescout#readme", "bugs": { "url": "https://github.com/verygoodplugins/mcp-freescout/issues" }, "dependencies": { "@modelcontextprotocol/server": "^2.0.0", "dotenv": "^17.2.3", "zod": "^4.3.5" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^26.2.0", "@vitest/coverage-v8": "^4.1.10", "eslint": "^10.8.1", "eslint-config-prettier": "^10.1.8", "prettier": "^3.9.6", "tsx": "^4.23.12", "typescript": "^6.0.3", "typescript-eslint": "^8.67.0", "vitest": "^4.1.10" }, "files": [ "dist/", "README.md", "LICENSE" ] }