Skip to main content
Glama

keychain_edit_org_collection

Rename an organization collection in a Bitwarden vault to update its label for better organization and access control.

Instructions

Rename an organization collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
organizationIdYes
idYes
nameYes

Implementation Reference

  • The tool 'keychain_edit_org_collection' is registered in 'src/tools/registerTools.ts'. Its handler uses the 'keychainSdk' to execute the 'editOrgCollection' method.
      `${deps.toolPrefix}.edit_org_collection`,
      {
        title: 'Edit Org Collection',
        description: 'Rename an organization collection.',
        inputSchema: {
          organizationId: z.string(),
          id: z.string(),
          name: z.string(),
        },
        _meta: toolMeta,
      },
      async (input, extra) => {
        if (isReadOnly) return readonlyBlocked();
        const sdk = await deps.getSdk(extra.authInfo);
        const collection = await sdk.editOrgCollection(input);
        return {
          structuredContent: { collection },
          content: [{ type: 'text', text: 'Updated.' }],
        };
      },
    );

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