{ "name": "onepassword-agent-mcp", "version": "0.3.8", "description": "Local MCP server that lets agents paste approved 1Password secrets without receiving plaintext.", "mcpName": "io.github.gambadio/onepassword-agent-mcp", "type": "module", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gambadio/onepassword-agent-mcp.git" }, "homepage": "https://github.com/gambadio/onepassword-agent-mcp#readme", "bugs": { "url": "https://github.com/gambadio/onepassword-agent-mcp/issues" }, "publishConfig": { "access": "public" }, "files": [ "dist/src", "native", "public", "docs", "scripts", "server.json", "README.md", "SECURITY.md", "LICENSE", ".env.example" ], "keywords": [ "mcp", "model-context-protocol", "1password", "onepassword", "password-manager", "ai-agent", "credentials", "macos-menubar" ], "bin": { "onepassword-agent-mcp": "dist/src/cli.js", "onepassword-agent-mcp-server": "dist/src/mcp.js", "onepassword-agent-mcp-admin": "dist/src/admin.js" }, "scripts": { "build": "tsc", "typecheck": "tsc --noEmit", "dev": "tsx src/cli.ts admin", "dev:admin": "tsx src/admin.ts", "dev:mcp": "tsx src/mcp.ts", "start": "node dist/src/cli.js admin", "start:admin": "node dist/src/admin.js", "start:mcp": "node dist/src/mcp.js", "setup": "node dist/src/cli.js setup", "doctor": "node dist/src/cli.js doctor", "release:check": "node scripts/release-version.mjs check", "release:patch": "node scripts/release.mjs patch", "release:minor": "node scripts/release.mjs minor", "release:major": "node scripts/release.mjs major", "preversion": "npm run typecheck && npm test", "version": "node scripts/release-version.mjs sync && git add server.json", "prepack": "npm run build", "prepublishOnly": "npm run release:check && npm run typecheck && npm test", "test": "node --test --test-concurrency=1 --import tsx tests/*.test.ts", "test:ui": "playwright test" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "express": "^5.2.0", "proper-lockfile": "^4.1.2", "zod": "^4.1.13" }, "devDependencies": { "@playwright/test": "^1.63.0", "@types/express": "^5.0.6", "@types/node": "^24.10.1", "@types/proper-lockfile": "^4.1.4", "tsx": "^4.20.6", "typescript": "^5.9.3" }, "engines": { "node": ">=20" } }