password_read
Get passwords and other secrets from 1Password vaults by providing a secret reference or vault and item IDs. Optionally request the plaintext value; defaults to metadata-only.
Instructions
Retrieve a secret from 1Password using either a secret reference (op://vault/item/field) or vault ID + item ID. Supports field selection and optional value reveal (defaults to metadata-only). Revealing a secret puts it in the model context/transcript — to USE a secret in a command or API call, prefer op_run with op:// references instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| field | No | Field id or title to read. Defaults to 'password'. | |
| itemId | No | Item ID for item lookup (required if secretReference is not provided). | |
| reveal | No | If true, include the secret value in plaintext in the response — this puts the secret in the model context/transcript. Defaults to false; prefer op_run to use a secret without revealing it. | |
| vaultId | No | Vault ID for item lookup (required if secretReference is not provided). | |
| secretReference | No | Secret reference in op://vault/item/field format. If provided, vaultId and itemId are ignored. |