Skip to main content
Glama

get_branding

Retrieve the current client portal branding configuration including display name, logo, colors, and settings to review before making changes.

Instructions

Get the workspace's whitelabel branding configuration. Returns the current branding settings: displayName, logoUrl, tagline, primaryColor, primaryColorDark, faviconUrl, and hideBadge. Use this to inspect the current client portal branding before making changes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler for 'get_branding' that calls the underlying client's getBranding method.
    async (_args, extra) => {
        const client = clientFactory(extra);
        const result = await client.getBranding();
        return {
            content: [{
                type: 'text' as const,
                text: JSON.stringify(result, null, 2),
            }],
        };
    }
  • MCP tool registration for 'get_branding'.
        server.tool(
            'get_branding',
            `Get the workspace's whitelabel branding configuration.
    Returns the current branding settings: displayName, logoUrl, tagline, primaryColor, primaryColorDark, faviconUrl, and hideBadge.
    Use this to inspect the current client portal branding before making changes.`,
            {},
  • AgentledClient implementation of getBranding, which makes an HTTP request to the /workspace/branding endpoint.
    async getBranding() {
        return this.request('/workspace/branding');
    }
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that this is a read operation ('Get', 'inspect') and specifies the return data structure (listing specific fields like displayName, logoUrl). However, it lacks details on permissions, rate limits, or error handling, which would be beneficial for a tool with no annotations.

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 front-loaded with the core purpose in the first sentence, followed by return details and usage guidance. Every sentence adds value without redundancy, making it efficient and well-structured for quick understanding.

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?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is largely complete: it explains the purpose, return values, and usage context. However, it could be more complete by explicitly mentioning that no parameters are needed or detailing potential errors, though this is minor for such a straightforward tool.

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

Parameters4/5

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

The tool has 0 parameters with 100% schema description coverage. The description appropriately does not discuss parameters, as none exist. It earns a baseline 4 for not adding unnecessary param info, but not a 5 since it doesn't explicitly state 'no parameters required'—though this is implied by the context.

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 clearly states the specific action ('Get') and resource ('workspace's whitelabel branding configuration'), distinguishing it from siblings like 'update_branding' (which modifies) and 'get_workspace' (which retrieves general workspace info). It precisely identifies what is retrieved without being vague or tautological.

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?

It explicitly states when to use this tool: 'Use this to inspect the current client portal branding before making changes.' This provides clear context for usage (pre-modification inspection) and implicitly distinguishes it from the sibling 'update_branding' as an alternative for making changes.

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/Agentled/mcp-server'

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