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');
    }

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