AgentHubAgentHub

onepassword

MCP ServerMCP Registry官方收录

com.pulsemcp/onepassword · v0.5.3

MCP server for interacting with 1Password via the CLI to read and manage credentials.

概览

onepassword 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "onepassword": {
      "command": "npx",
      "args": [
        "-y",
        "onepassword-mcp-server"
      ],
      "env": {
        "OP_SERVICE_ACCOUNT_TOKEN": "<OP_SERVICE_ACCOUNT_TOKEN>"
      }
    }
  }
}

环境变量

OP_SERVICE_ACCOUNT_TOKEN必填secret

Service account token for authentication with 1Password CLI.

ENABLED_TOOLGROUPS可选

Comma-separated tool groups to enable (readonly, write).

SKIP_HEALTH_CHECKS可选

Skip credential validation on server startup.

DANGEROUSLY_SKIP_ELICITATIONS可选

Bypass all credential approval prompts (exposes all secrets).

OP_ELICITATION_READ可选

Prompt for approval before revealing credentials.

OP_ELICITATION_WRITE可选

Prompt for approval before creating or sharing items.

OP_WHITELISTED_ITEMS可选

Comma-separated item titles or IDs that bypass read elicitation.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/onepassword",
  "type": "mcp-server",
  "version": "0.5.3",
  "displayName": "onepassword",
  "description": "MCP server for interacting with 1Password via the CLI to read and manage credentials.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/onepassword"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "onepassword-mcp-server",
        "version": "0.5.3",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "OP_SERVICE_ACCOUNT_TOKEN",
            "description": "Service account token for authentication with 1Password CLI.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "ENABLED_TOOLGROUPS",
            "description": "Comma-separated tool groups to enable (readonly, write)."
          },
          {
            "name": "SKIP_HEALTH_CHECKS",
            "description": "Skip credential validation on server startup."
          },
          {
            "name": "DANGEROUSLY_SKIP_ELICITATIONS",
            "description": "Bypass all credential approval prompts (exposes all secrets)."
          },
          {
            "name": "OP_ELICITATION_READ",
            "description": "Prompt for approval before revealing credentials."
          },
          {
            "name": "OP_ELICITATION_WRITE",
            "description": "Prompt for approval before creating or sharing items."
          },
          {
            "name": "OP_WHITELISTED_ITEMS",
            "description": "Comma-separated item titles or IDs that bypass read elicitation."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/onepassword",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fonepassword/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
onepassword — MCP Server 安装与配置 · AgentHub