Skip to content
Brandfetch MCP

Brandfetch MCP

Released
5 views

Summary

Official remote MCP server from Brandfetch that gives an agent real company logos, brand colours, fonts and merchant identification instead of guessed or hallucinated assets.

Features

  • brand_search — look up a brand by name
  • get_brand — logos, colour palette, fonts and company details by domain
  • get_brand_context — LLM-optimised brand summary
  • enrich_transaction — identify a merchant from a raw transaction string
  • build_logo_urls — stable CDN links for logos by size and theme
  • SVG and PNG logos with light and dark variants
  • Remote HTTP server with OAuth; bearer token for CI

Installation

Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.

Any MCP-compatible agent

Most agents (Claude, Cursor, Windsurf, VS Code, and more) read a standard mcpServers configuration.

  1. Open your agent's MCP configuration file.
  2. Merge the snippet below into it.
  3. Restart the agent — the "Brandfetch MCP" tools will be available.
{
  "mcpServers": {
    "brandfetch-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.brandfetch.io/mcp"
      ]
    }
  }
}

Description

Ask an agent to build a page with a company's logo on it and it will usually improvise: a wrong-era wordmark scraped from a search result, a 16-pixel favicon stretched to 200 pixels, or a hex colour it simply invented. Brandfetch's official MCP server removes the guesswork by putting a real brand database behind the request.

Tools exposed (5):

  • brand_search — find a brand by name when you do not know the domain.
  • get_brand — the full profile for a domain: logo variants, colour palette, typography and company details.
  • get_brand_context — the same information reshaped for an LLM to reason over rather than to render.
  • enrich_transaction — resolve a raw transaction descriptor (the kind of garbled merchant string that appears on a bank statement) to an identified company. This is the tool that makes the server interesting well beyond design work.
  • build_logo_urls — construct CDN URLs for a logo at a given size and theme, so you get a stable link rather than a downloaded blob.

Logos come back in SVG and PNG with light and dark variants, which matters if the thing you are generating has to work in both colour schemes.

Connection: it is a remote server at https://mcp.brandfetch.io/mcp over HTTP — nothing to install and nothing to keep updated. Authentication is OAuth by default, so your client opens a browser once and remembers. For CI and other non-interactive environments, mint an MCP token in the Brandfetch Developer Dashboard and send it as a bearer token instead.

Limits: the free tier allows 100 requests a month, and every MCP call draws on the same Brand API quota as your other Brandfetch usage — visible in the Developer Dashboard.

Good for: design and marketing agents assembling decks, landing pages or ad creative with correct brand assets; and fintech or expense-tooling agents that need to turn transaction strings into recognisable merchants.

Related MCP Servers

MCP: Headroom

by Headroom Labs

New

Context-compression MCP server that shrinks tool outputs, logs, files and RAG chunks before they reach the model, cutting 60-95% of tokens on JSON payloads.

MCP: Engram

by Gentleman Programming

New

Persistent memory for coding agents as a single Go binary — SQLite and FTS5 behind MCP, an HTTP API, a CLI and a TUI, with no Node, Python or Docker required.

MCP: agent-device

by Callstack

New

Give a coding agent a live feedback loop on real mobile, TV and desktop apps — inspect, tap, type and capture evidence on iOS, Android and HarmonyOS over MCP or a CLI.

New

The official W&B MCP server: query experiment runs, Weave LLM traces, artifacts and registries in natural language, and write findings back as a W&B report.

Browse all MCP servers →