Skip to main content
Glama

keychain_send_edit

Edit Bitwarden secure file or text shares by providing JSON data or base64-encoded content, optionally specifying the item ID for targeted updates.

Instructions

Edit a Send via bw send edit. Provide encodedJson (base64) or json (will be bw-encoded). Optional: itemId (maps to --itemid).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
encodedJsonNo
jsonNo
itemIdNo

Implementation Reference

  • Registration and handler for the `send_edit` tool. It uses `sdk.sendEdit` to perform the operation.
      `${deps.toolPrefix}.send_edit`,
      {
        title: 'Send Edit (Encoded JSON)',
        description:
          'Edit a Send via `bw send edit`. Provide `encodedJson` (base64) or `json` (will be bw-encoded). Optional: `itemId` (maps to --itemid).',
        annotations: {
          readOnlyHint: false,
          destructiveHint: false,
          openWorldHint: true,
        },
        inputSchema: {
          encodedJson: z.string().optional(),
          json: z.unknown().optional(),
          itemId: z.string().optional(),
        },
        _meta: toolMeta,
      },
      async (input, extra) => {
        if (isReadOnly) return readonlyBlocked();
        const sdk = await deps.getSdk(extra.authInfo);
        const send = await sdk.sendEdit(input);
        return {
          structuredContent: { send },
          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