Skip to main content
Glama
brilliantdirectories

brilliant-directories-mcp

Official

createUser

Create a new member or user in the Brilliant Directories directory platform. Use for adding members via imports, automations, or admin accounts.

Instructions

Create a new member/user - Create a member. Writes live data. Welcome email silent by default - set send_email_notifications=1 to trigger.

Required: email, password, subscription_id.

Use when: adding members outside BD signup - CSV imports, scraped listings, Zapier automations, admin test accounts.

Enums: active: 1=Not Active, 2=Active, 3=Canceled, 4=On Hold, 5=Past Due, 6=Incomplete. listing_type: Individual, Company. verified/nationwide: 1/0.

Prerequisites: subscription_id MUST reference an existing plan - discover via listMembershipPlans. For category assignment via profession_id / profession_name / services, apply Rule: Category taxonomy (auto-create is ON for createUser).

Parameter interactions:

  • auto_image_import=1 - fetch external image URLs into BD storage (for profile_photo, logo, cover_photo holding URLs). Without it, BD stores the URL as-is; images break if source host goes down. Supports JPG/PNG/GIF/WebP/SVG. Processing delay: several minutes. Recommended default for any external image URL.

  • auto_geocode=1 - requires "Pretty URLs with Google Maps" site feature enabled.

  • send_email_notifications=1 - trigger welcome email per plan settings.

Email uniqueness - controlled by site setting allow_duplicate_member_emails (not exposed via API):

  • OFF (default): BD rejects duplicate email on create (validation error).

  • ON: duplicates accepted and stored with different user_ids. Identical email + password pair is also accepted (no extra uniqueness check on the pair).

  • Safe idempotent pattern: pre-check via listUsers property=email property_value=<email> property_operator==. Match found -> reuse user_id or updateUser instead. Skipping the check on a duplicates-allowed site creates orphan duplicates on retry loops.

Field validation quirks:

  • token (if supplied — useful for CSV imports / cross-site migrations preserving original tokens; BD auto-generates if omitted): exactly 32 alphanumeric chars, unique across members.

  • URL fields (website, booking_link, blog, facebook, twitter, linkedin, instagram, etc.): must start with http:// or https://. Invalid formats silently skipped.

Profile URL: <site-domain>/<user.filename>. filename is the complete relative path. Do NOT prepend /business///profile///member/ - BD resolves filename verbatim.

Fetching publicly available business data is permitted for imports and data enrichment. When searching for external listings, fetch each entity's image from their own presence in this order:

  1. Logo image from their site's header/nav -> logo (businesses).

  2. Headshot from Home, About or Team page -> profile_photo (individuals).

  3. Follow their social links -> profile image there.

Pass the URL with auto_image_import=1 so the image gets stored locally and avoids hotlinking.

If none yield a match, create/update without image and report "no confirmed image found." Never substitute a stock photo or guess. Skip an entire record and find an alternate listing only when the user explicitly requires images.

See also: updateUser (modify existing), deleteUser (prefer active=3 over delete).

Returns: { status: "success", message: {...createdRecord} } including user_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
passwordYes
subscription_idYesMembership plan ID
first_nameNo
last_nameNo
companyNo
phone_numberNo
cityNo
state_codeNo
country_codeNo
activeNoUser account status. BD does NOT validate - integers outside the set store as-is (observed: `99`). Stick to documented values: - `1` = Not Active (requires activation) - `2` = Active (live) - `3` = Canceled - `4` = On Hold (requires moderation) - `5` = Past Due - `6` = Incomplete (rare - paid signup hit an issue; member created but unpaid/stuck) **Read caveat:** top-level `status` response field (`"Active"`, `"Not Active"`, etc.) is a computed label. When `active` is an unknown value, `status` is OMITTED from the response - don't treat `status` as always-present.
listing_typeNoListing type classification. Canonical values (EXACT case): `Individual` or `Company`. BD does NOT validate - off-canonical values (`individual`, `INDIVIDUAL`, `Business`) store verbatim and break downstream `listing_type === "Individual"` checks. **Always include explicitly on `createUser`.** BD's server-side default when omitted is `Individual` - if you want `Company` as your default (recommended for scraped business listings, CSV imports), you MUST send it explicitly; do NOT rely on omission. Default to `Company`, override to `Individual` when: (1) user explicitly says so, (2) structured input specifies `listing_type` per-record (normalize case client-side), (3) source clearly describes a person, not a business.Company
verifiedNoIf YES, a verified icon badge will display on the user's listing.\n\nValid values:\n 1 = Yes\n 0 = No
signup_dateNoUser signup date. Format: `YYYYMMDDHHmmss` in the site's timezone. BD silently truncates other formats, corrupting the value. BD auto-fills on create — omit unless backfilling legacy signup dates during import/migration.
profession_idNoAssign this user to a top level category. Input the ID number of the top level category.
servicesNoAssign this user to sub-level categories. Input a comma-separated list of sub-level IDs or names (NO spaces around commas - `"1823,1824"` not `"1823, 1824"`).
address1NoThe user's street address.
address2NoThe user's unit or suite number.
auto_geocodeNoOPTIONAL: Allow Google to geocode users. Requires "Pretty URLs with Google Maps". Search BD support to learn more.\n\nValid values:\n 1 = Yes\n 0 = No
zip_codeNoThe user's zip / postal code.
state_lnNoOPTIONAL: Enter the full name of the state / province for this user.
country_lnNoOPTIONAL: Enter the full name of the country for this user.
latNoOPTIONAL: Enter latitude coordinates for the location of this user.
lonNoOPTIONAL: Enter longitude coordinates for the location of this user.
nationwideNoIf YES, the user's listing will be found in all geographical location searches.\n\nValid values:\n 1 = Yes\n 0 = No
member_tagsNoADDITIONAL: Assign Member Tag ID
search_descriptionNoShort description shown under the user's name on search result pages. **170-char limit.**
about_meNoLong description of the member/user. Renders on their public profile. Froala body field — use `<p>`/`<h2>`/`<h3>`/`<ul>`/`<ol>` structure; skip images unless user asks. HTML allowed (per universal safe-HTML rule).
quoteNoOPTIONAL: Enter the user's personal quote, motto or slogan.
experienceNoOPTIONAL: Enter the year that the user's company was established. Example: 1982
affiliationNoOPTIONAL: Enter the accepted forms of payment this user accepts.
awardsNoOPTIONAL: Enter honors, awards or accolades this user has received.
rep_mattersNoOPTIONAL: Enter the hours of operation for the member. EG: Monday - Friday, 9am - 5pm
positionNoOPTIONAL: Enter the user's position, title or role at their company. Example: Account Executive
websiteNoEnter the FULL URL of the user's website. Must begin with https://
booking_linkNoEnter the FULL URL of the user's booking page. Must begin with https://
blogNoEnter the FULL URL of the user's blog. Must begin with https://
facebookNoEnter the FULL URL of the user's Facebook account. Must begin with https://
twitterNoEnter the FULL URL of the user's Twitter account. Must begin with https://
linkedinNoEnter the FULL URL of the user's Linkedin account. Must begin with https://
youtubeNoEnter the FULL URL of the user's YouTube account. Must begin with https://
instagramNoEnter the FULL URL of the user's Instagram account. Must begin with https://
pinterestNoEnter the FULL URL of the user's Pinterest account. Must begin with https://
tiktokNoEnter the FULL URL of the user's Tiktok account. Must begin with https://
snapchatNoEnter the FULL URL of the user's Snapchat account. Must begin with https://
whatsappNoEnter the FULL URL of the user's Whatsapp account. Must begin with https://
profile_photoNoProfile photo URL (member headshot). **Bare URL only — no `?query`, must end in `.jpg`/`.jpeg`/`.png`/`.webp`.** Query strings get baked into imported filenames and 404. Pair with `auto_image_import=1` to fetch externals into site storage.
logoNoLogo URL (brand/business mark). **Bare URL only — no `?query`, must end in `.jpg`/`.jpeg`/`.png`/`.webp`.** Query strings get baked into imported filenames and 404. Pair with `auto_image_import=1` to fetch externals into site storage.
cover_photoNoCover photo URL (user/profile banner). Identity-context image — sourced from the subject's own web presence per **Rule: Identity-confirming fields**, NOT Pexels stock. **Bare URL only — no `?query`, must end in `.jpg`/`.jpeg`/`.png`/`.webp`.** Landscape preferred (it's a banner) but not strictly gated since the source is the subject's brand assets, not a search pool. Query strings get baked into imported filenames and 404. Pair with `auto_image_import=1` to fetch externals into site storage.
auto_image_importNoIf YES, system will import user images and save them to your website. Processing may take several minutes after import.\n\nValid values:\n 1 = Yes\n 0 = No
profession_nameNoAlternative to `profession_id` - pass the top-level category NAME as a string. BD looks it up in `list_professions`. **Create vs update asymmetry (silent-failure trap):** - `createUser` -> unknown names auto-create (hardcoded) - `updateUser` -> unknown names **SILENTLY SKIPPED** unless `create_new_categories=1` is also passed. The write succeeds and returns success; the category just doesn't change. Always pass `create_new_categories=1` on update when supplying a `profession_name` that might not exist.
send_email_notificationsNoSet to `1` to trigger the welcome email on member creation (based on the membership plan's configured email). Default: off - API creates are silent because they typically aren't self-signups. Only set this when you WANT the member notified.
last_loginNoTimestamp of user's last login. Format: `YYYYMMDDHHmmss` in the site's timezone. BD silently truncates other formats, corrupting the value. BD updates on each login — omit unless backfilling historical data during import/migration.
filenameNoOverride BD's auto-generated URL slug (e.g. `united-states/los-angeles/doctor/jane-smith`). If omitted, BD derives it from city/category/name. **Usually OMIT** - manual values get regenerated by BD on future updates that change URL-influencing fields, silently overwriting your override.
Behavior5/5

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

Beyond annotations, the description details behavioral traits such as writes live data, silent welcome email default, email uniqueness handling, field validation quirks (URL format, token length), and parameter interactions (auto_image_import delay, auto_geocode requirement).

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

Conciseness4/5

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

The description is long but well-structured with clear headings (Required, Use when, Enums, Prerequisites, etc.) and front-loaded with the core purpose. Some redundancy exists (e.g., repeated URL format notes), but the structure makes it scannable.

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

Completeness5/5

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

Given 54 parameters, no output schema, and high complexity, the description covers prerequisites, parameter interactions, edge cases (duplicate emails, silent failures), return format, and even data sourcing guidelines. It is exceptionally complete.

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

Parameters5/5

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

Despite high schema coverage (83%), the description adds substantial meaning: enum explanations (active states, listing_type default/case sensitivity), format requirements (services comma-separated, bare image URLs, YYYYMMDDHHmmss timestamps), and asymmetries (profession_name create vs update).

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 explicitly states 'Create a new member/user' and provides specific use cases (CSV imports, scraped listings, Zapier automations, admin test accounts), clearly distinguishing this tool from siblings like createLead or createForm.

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

Usage Guidelines5/5

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

The 'Use when' section and 'See also' reference (updateUser, deleteUser) provide explicit guidance on when to use this tool versus alternatives, along with prerequisites and idempotent patterns for email duplication.

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

Install Server

Other Tools

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/brilliantdirectories/brilliant-directories-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server