keychain_get_exposed
Check if passwords or credentials have been exposed in data breaches by searching with a specific term to identify security risks.
Instructions
Check exposed status by search term (bw get exposed).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| term | Yes |
Implementation Reference
- src/tools/registerTools.ts:633-655 (handler)Implementation of the 'get_exposed' tool, which checks Bitwarden vault item exposure status.
`${deps.toolPrefix}.get_exposed`, { title: 'Get Exposed', description: 'Check exposed status by search term (bw get exposed).', annotations: { readOnlyHint: true }, inputSchema: { term: z.string(), }, _meta: toolMeta, }, async (input, extra) => { const sdk = await deps.getSdk(extra.authInfo); const exposed = await sdk.getExposed(input); return { structuredContent: toolResult( 'exposed', exposed.value, exposed.revealed, ), content: [{ type: 'text', text: 'OK' }], }; }, );