Skip to main content
Glama
backblaze-labs

Backblaze B2 MCP Server

Official

b2_create_group_member

Destructive

Creates a Backblaze account for a new Partner group member, returning the app key secret via secure sink or inline. Requires admin account ID, group ID, member email, and idempotency key.

Instructions

Create a Backblaze account for a new Partner group member. In file sink mode, the one-time application key secret is written to the configured out-of-band secret sink and the MCP response contains only redacted metadata plus a secretSink pointer. In inline mode, the secret is returned with an explicit warning.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionNoOptional data region for the new account.
confirmNoFallback confirmation for this destructive/irreversible operation when the effective server destructive policy is 'confirm' and MCP elicitation cannot run.
groupIdYesThe Group ID that the new member will join.
memberEmailYesEmail address for the new group member account.
adminAccountIdYesThe accountId of the Group admin. Must be authorized for the Partner API.
idempotencyKeyYesCaller-generated idempotency key. Reuse the same value only when retrying the identical group-member creation request.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / confirm / description
      Previous value: -"Confirm this destructive/irreversible operation. Required when the server destructive policy is 'confirm' (the default)."New value: +"Fallback confirmation for this destructive/irreversible operation when the effective server destructive policy is 'confirm' and MCP elicitation cannot run."
  2. First observedv0.2.0

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (destructiveHint, openWorldHint), the description discloses critical runtime behavior: secret handling differs by mode. It explains that file sink mode writes the one-time application key secret out-of-band and returns only redacted metadata plus a secretSink pointer, while inline mode returns the secret with an explicit warning. This is valuable, non-obvious behavior that annotations alone do not convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the primary action, then efficiently explains the two secret-handling modes. Every sentence adds necessary information, and there is no filler or repetition of schema fields.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the essential outcome, the secret-handling modes, and the response shape despite lacking an output schema. It leaves minor details such as failure behavior and billing implications unstated, but the schema and annotations fill most remaining gaps. Overall it is complete enough for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents all parameters including adminAccountId, groupId, memberEmail, idempotencyKey, region, and confirm. The description adds context about the generated one-time application key but does not add parameter-level meaning beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Create a Backblaze account for a new Partner group member.' This clearly identifies the operation and distinguishes it from sibling tools like b2_eject_group_member or b2_reserve_trial_create_account. The account creation intent is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when the tool applies: when a new Partner group member account must be created. It does not explicitly name alternatives or exclusions, but the context is specific enough that an agent can route to this tool for group-member creation versus other create/eject operations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.