Send List
keychain_send_listRetrieve a list of secure file and text shares from your password vault. Use this tool to view all Bitwarden Send items you own.
Instructions
List all the Sends owned by you (bw send list).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/registerTools.ts:886-902 (handler)Registration and handler implementation for keychain_send_list (registered as .send_list).
`${deps.toolPrefix}.send_list`, { title: 'Send List', description: 'List all the Sends owned by you (bw send list).', annotations: { readOnlyHint: true, openWorldHint: true }, inputSchema: {}, _meta: toolMeta, }, async (_input, extra) => { const sdk = await deps.getSdk(extra.authInfo); const sends = await sdk.sendList(); return { structuredContent: { sends }, content: [{ type: 'text', text: 'OK' }], }; }, );