Skip to main content
Glama
AiAgency-Now

VoiceAI-MCP-VAVicky

Official
by AiAgency-Now

update_white_label

Modify white-label branding elements including name, description, domain, and color scheme for custom voice AI solutions.

Instructions

Update White Label details: name, description, domain and color

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
whitelabel_nameNoWhite label name
whitelabel_descriptionNoWhite label description
whitelabel_domainNoWhite label domain
whitelabel_colorNoWhite label color (hex code)

Implementation Reference

  • Handler for the 'update_white_label' tool: prepares a PATCH request to update user white label settings via the backend API.
    case 'update_white_label':
      url = `${this.baseUrl}/user`;
      method = 'PATCH';
      body = {
        whitelabel_name: args.whitelabel_name,
        whitelabel_description: args.whitelabel_description,
        whitelabel_domain: args.whitelabel_domain,
        whitelabel_color: args.whitelabel_color
      };
      break;
  • Schema definition and registration of the 'update_white_label' tool in the ListTools response, including input schema for white label parameters.
      name: 'update_white_label',
      description: 'Update White Label details: name, description, domain and color',
      inputSchema: {
        type: 'object',
        properties: {
          whitelabel_name: { type: 'string', description: 'White label name' },
          whitelabel_description: { type: 'string', description: 'White label description' },
          whitelabel_domain: { type: 'string', description: 'White label domain' },
          whitelabel_color: { type: 'string', description: 'White label color (hex code)' }
        },
        required: []
      }
    },
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is an update operation, implying mutation, but doesn't cover critical aspects like required permissions, whether changes are reversible, potential side effects, or error handling. This is a significant gap for a mutation tool.

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 a single, efficient sentence that front-loads the key information ('Update White Label details') and lists the specific fields without unnecessary words. Every part of the sentence contributes directly to understanding the tool's function.

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

Completeness2/5

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

For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what 'White Label' refers to, the expected behavior on partial updates (since all parameters are optional), or the response format. This leaves critical gaps for an AI agent to use the tool effectively.

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?

The schema description coverage is 100%, with each parameter clearly documented in the input schema. The description adds minimal value by listing the updatable fields (name, description, domain, color), which aligns with the schema but doesn't provide additional context like format constraints or examples beyond what's already specified.

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

Purpose4/5

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

The description clearly states the verb ('Update') and resource ('White Label details'), specifying the exact fields that can be modified (name, description, domain, color). However, it doesn't distinguish this tool from its sibling tools like 'update_assistant' or 'update_smtp' by explaining what 'White Label' means in this context.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives, such as whether it's for initial setup or modifications, or what prerequisites might be needed. It lacks any mention of related tools or specific contexts for application.

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/AiAgency-Now/MCP-VoiceAI-WhiteLabel'

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