Skip to main content
Glama

keychain_create_folder

Create a personal folder in your Bitwarden vault to organize passwords and secure items by specifying a folder name.

Instructions

Create a Bitwarden folder (personal).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Implementation Reference

  • Handler implementation for creating a folder in Bitwarden, registered as 'create_folder'. Note that while the prompt referred to 'keychain_create_folder', the actual registration in this codebase uses the 'create_folder' suffix under the tool prefix.
    registerTool(
      `${deps.toolPrefix}.create_folder`,
      {
        title: 'Create Folder',
        description: 'Create a Bitwarden folder (personal).',
        inputSchema: {
          name: z.string(),
        },
        _meta: toolMeta,
      },
      async (input, extra) => {
        if (isReadOnly) return readonlyBlocked();
        const sdk = await deps.getSdk(extra.authInfo);
        const folder = await sdk.createFolder({ name: input.name });
        return {
          structuredContent: { folder },
          content: [{ type: 'text', text: 'Created.' }],
        };
      },
    );

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