keychain_list_organizations
Retrieve available Bitwarden organizations for the current user to manage access permissions and vault structure.
Instructions
List organizations available to the current Bitwarden user.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | ||
| limit | No |
Implementation Reference
- src/tools/registerTools.ts:1462-1489 (handler)The tool `keychain_list_organizations` is registered in `src/tools/registerTools.ts`. The handler calls `sdk.listOrganizations(input)`. Note: The tool name used during registration is dynamically built, likely resolving to `keychain_list_organizations` based on the context of other tools.
}; }, ); registerTool( `${deps.toolPrefix}.create_card`, { title: 'Create Card', description: 'Create a payment card item.', inputSchema: { name: z.string(), cardholderName: z.string().optional(), brand: z.string().optional(), number: z.string().optional(), expMonth: z.string().optional(), expYear: z.string().optional(), code: z.string().optional(), notes: z.string().optional(), fields: z .array( z.object({ name: z.string(), value: z.string(), hidden: z.boolean().optional(), }), ) .optional(), favorite: z.boolean().optional(),