keychain_send_remove_password
Remove saved passwords from Bitwarden Send items to enhance security by eliminating stored credentials after sharing.
Instructions
Remove a Send's saved password (bw send remove-password).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/registerTools.ts:1052-1075 (handler)The handler for the tool "keychain_send_remove_password" is registered in `src/tools/registerTools.ts`. It uses the `sendRemovePassword` method from the injected `sdk` to perform the action.
`${deps.toolPrefix}.send_remove_password`, { title: 'Send Remove Password', description: "Remove a Send's saved password (bw send remove-password).", annotations: { readOnlyHint: false, destructiveHint: true, openWorldHint: true, }, inputSchema: { id: z.string(), }, _meta: toolMeta, }, async (input, extra) => { if (isReadOnly) return readonlyBlocked(); const sdk = await deps.getSdk(extra.authInfo); const result = await sdk.sendRemovePassword(input); return { structuredContent: { result }, content: [{ type: 'text', text: 'OK' }], }; }, );