organizations#

Browse organizations resource actions that can be discovered, described, and executed through the Brandwave MCP server.

Capability flow

Connect to the Brandwave MCP server via OAuth, then use discover-brandwave-capabilities, describe-brandwave-action, and execute-brandwave-action to work with these actions.

list-organizations#

List organizations the current user belongs to, with membership details.

Read-onlyIdempotent

Example prompt#

text
List all organizations in my organization.

Parameters#

NameTypeRequiredDescription
pageIndexintegerRequiredZero-based page index for pagination.
pageSizeintegerRequiredNumber of items per page (1-100).
userIdstring (UUID)RequiredUser identifier to list organizations for.

Response#

Returns { items, totalCount, facets } with paginated results.

Underlying SDK method: bw.organizations.list(params)

get-organization#

Retrieve a single organization by ID.

Read-onlyIdempotent

Example prompt#

text
Show me the details for this organization.

Parameters#

NameTypeRequiredDescription
idstring (UUID)RequiredOrganization identifier.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.get({ id })

create-organization#

Create an organization with a name, timezone, and currency, then assign the requesting user as owner.

Example prompt#

text
Create a new organization.

Parameters#

NameTypeRequiredDescription
userIdstring (UUID)RequiredUser identifier of the organization owner.
namestringRequiredOrganization name.
ianaTimezone'UTC' | 'America/New_York' | 'America/Chicago' | 'America/Denver' | 'America/Los_Angeles' | 'America/Anchorage' | 'Pacific/Honolulu' | 'America/Toronto' | 'America/Vancouver' | 'Europe/London' | 'Europe/Paris' | 'Europe/Berlin' | 'Australia/Sydney' | 'Australia/Melbourne' | 'Pacific/Auckland' | 'Asia/Tokyo' | 'Asia/Singapore' | nullIANA timezone identifier.
currency'USD' | 'CAD' | 'GBP' | 'EUR' | 'AUD' | 'NZD' | 'JPY' | 'SGD'ISO 4217 currency code.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.create(params)

complete-organic-signup#

Create a first-time organic signup workspace using the submitted organization name, timezone, and currency, then join the default demo org as a viewer and switch the active organization to the demo workspace.

Example prompt#

text
Complete organic signup for my organization.

Parameters#

NameTypeRequiredDescription
userIdstring (UUID)RequiredUser identifier completing first-time organic onboarding.
namestringRequiredName of the real organization to create for the user.
ianaTimezone'UTC' | 'America/New_York' | 'America/Chicago' | 'America/Denver' | 'America/Los_Angeles' | 'America/Anchorage' | 'Pacific/Honolulu' | 'America/Toronto' | 'America/Vancouver' | 'Europe/London' | 'Europe/Paris' | 'Europe/Berlin' | 'Australia/Sydney' | 'Australia/Melbourne' | 'Pacific/Auckland' | 'Asia/Tokyo' | 'Asia/Singapore' | nullIANA timezone identifier.
currency'USD' | 'CAD' | 'GBP' | 'EUR' | 'AUD' | 'NZD' | 'JPY' | 'SGD'ISO 4217 currency code.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.completeOrganicSignup(params)

update-organization#

Update an organization's name, description, timezone, currency, conversion value for ROI calculations, or attribution window.

Owner only

Example prompt#

text
Update the organization.

Parameters#

NameTypeRequiredDescription
idstring (UUID)RequiredOrganization identifier to update.
namestringUpdated organization name (1-255 characters).
ianaTimezone'UTC' | 'America/New_York' | 'America/Chicago' | 'America/Denver' | 'America/Los_Angeles' | 'America/Anchorage' | 'Pacific/Honolulu' | 'America/Toronto' | 'America/Vancouver' | 'Europe/London' | 'Europe/Paris' | 'Europe/Berlin' | 'Australia/Sydney' | 'Australia/Melbourne' | 'Pacific/Auckland' | 'Asia/Tokyo' | 'Asia/Singapore' | nullUpdated IANA timezone.
currency'USD' | 'CAD' | 'GBP' | 'EUR' | 'AUD' | 'NZD' | 'JPY' | 'SGD'Updated currency code.
conversionValuenumberAverage customer value for ROI calculations (non-negative).
defaultAttributionWindowDaysinteger | nullNumber of days for the attribution window (must be greater than zero).

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.update(params)

delete-organization#

Permanently delete an organization and all associated data.

Owner only
Destructive

Example prompt#

text
Delete this organization.

Parameters#

NameTypeRequiredDescription
idstring (UUID)RequiredOrganization identifier to delete.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.delete(params)

Destructive action

Deleting an organization permanently removes all activities, campaigns, creators, costs, conversions, and team members. This action cannot be undone.

list-organization-users#

List users in an organization with pagination and search.

Read-onlyIdempotent

Example prompt#

text
List all organization users in my organization.

Parameters#

NameTypeRequiredDescription
pageIndexintegerRequiredZero-based page index for pagination.
pageSizeintegerRequiredNumber of items per page (1-100).
organizationIdstring (UUID)RequiredOrganization identifier.
searchTermstringFree-text search term to filter results (max 200 characters).
sortBystringColumn name to sort by.
sortDirection'asc' | 'desc'Sort direction: ascending or descending.

Response#

Returns { items, totalCount, facets } with paginated results.

Underlying SDK method: bw.organizations.users.list(params)

add-organization-user#

Add an existing user to an organization with a specified role.

Owner only

Example prompt#

text
Add the organization user.

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
userIdstring (UUID)RequiredUser identifier to add.
role'owner' | 'member' | 'viewer'RequiredRole to assign (owner, member, or viewer).

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.add(params)

update-organization-user-role#

Update a user's role within an organization.

Owner only

Example prompt#

text
Update the organization user role.

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
userIdstring (UUID)RequiredUser identifier whose role is being changed.
role'owner' | 'member' | 'viewer'RequiredNew role to assign (owner, member, or viewer).

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.updateRole(params)

remove-organization-user#

Remove a user's membership from an organization.

Owner only
Destructive

Example prompt#

text
Remove the organization user.

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
userIdstring (UUID)RequiredUser identifier to remove.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.remove(params)

invite-organization-user#

Invite a user to an organization by email.

Owner only

Example prompt#

text
Invite a user to my organization.

Parameters#

NameTypeRequiredDescription
emailstringRequiredEmail address to send the invite to.
organizationIdstring (UUID)RequiredOrganization identifier.
role'owner' | 'member' | 'viewer'RequiredRole to assign to the invited user (owner, member, or viewer).

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.invite(params)

Authorization required

Only organization owners can invite new members.

accept-organization-invite#

Accept a pending organization invite.

Example prompt#

text
Accept organization invite for my account.

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
userIdstring (UUID)RequiredUser identifier accepting the invite.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.acceptInvite(params)

decline-organization-invite#

Decline a pending organization invite.

Example prompt#

text
Decline organization invite for my account.

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
userIdstring (UUID)RequiredUser identifier declining the invite.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.declineInvite(params)

process-invite-signup#

Process invite metadata for a newly signed-up user.

Example prompt#

text
Process invite signup.

Parameters#

NameTypeRequiredDescription
userIdstring (UUID)RequiredAuthenticated user whose invite metadata should be processed.

Response#

Returns { data } with the result.

Underlying SDK method: bw.organizations.users.processInviteSignup()