{ "name": "@aaronsb/google-workspace-mcp", "version": "4.5.1", "license": "Apache-2.0", "mcpName": "io.github.aaronsb/google-workspace", "description": "MCP server for Google Workspace with progressive context disclosure and multi-account orchestration", "repository": { "type": "git", "url": "https://github.com/aaronsb/google-workspace-mcp" }, "type": "module", "bin": { "google-workspace-mcp": "./build/index.js" }, "files": [ "build", "NOTICE", "LICENSE-MIT" ], "scripts": { "version-stamp": "node scripts/version-stamp.mjs", "build": "npm run version-stamp && rm -rf build && tsc --skipLibCheck && cp -r src/factory/manifest build/factory/manifest && cp src/google/descriptor.json build/google/descriptor.json", "postbuild": "node scripts/check-build.mjs", "prepublishOnly": "npm run build", "type-check": "tsc --noEmit --skipLibCheck && tsc -p tsconfig.test.json --skipLibCheck", "lint": "eslint \"src/**/*.ts\"", "watch": "tsc --watch --skipLibCheck", "test": "vitest run src/__tests__/coverage src/__tests__/google src/__tests__/executor src/__tests__/accounts src/__tests__/server src/__tests__/factory src/__tests__/services src/server/scratchpad", "test:watch": "vitest src/__tests__/executor src/__tests__/accounts src/__tests__/server src/__tests__/factory src/__tests__/services src/server/scratchpad", "test:integration": "vitest run --no-file-parallelism src/__tests__/integration", "test:all": "vitest run --no-file-parallelism", "generate-descriptor": "node scripts/generate-descriptor.mjs", "check-descriptor": "node scripts/generate-descriptor.mjs --check", "verify:live": "vitest run src/__tests__/integration/live.test.ts", "generate-api-surface": "node scripts/generate-api-surface.mjs" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.27.1", "sanitize-html": "^2.17.6", "yaml": "^2.9.0" }, "devDependencies": { "@types/node": "^20.11.24", "@types/sanitize-html": "^2.16.1", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.56.0", "typescript": "^5.9.3", "vitest": "^4.1.10" }, "engines": { "node": ">=22.12.0" } }