Skip to main content
Glama

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
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • 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' }],
        };
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/icoretech/warden-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server