trackmcp
Back to directory
Brandfetch

brandfetch-mcp-server

View on GitHub

๐Ÿ”ฅ Official code of the Brandfetch MCP Server - Provides access to all the API products from Brandfetch.

9 stars PythonOthers Updated Sep 1, 2026

Documentation

Brandfetch MCP Server

The official Model Context Protocol server for

Brandfetch. It gives AI assistants access to brand

search, company data, logos and design assets, and LLM-ready brand context from

the Brandfetch API.

Full documentation: https://docs.brandfetch.com/mcp/overview

Tools

ToolDescription
`brand_search`Search for brands by name using Brandfetch's search index.
`get_brand`Look up full brand data by domain, stock ticker, ISIN, or crypto symbol.
`enrich_transaction`Identify a merchant brand from a credit-card or bank-statement string.
`get_brand_context`Get LLM-ready brand context for a domain โ€” voice, audience, positioning, style.
`build_logo_urls`Construct Brandfetch Logo CDN URLs for one or more brands (no API call).
`send_feedback`Report bugs, wrong or stale brand data, or missing capabilities to Brandfetch.

Quick start (hosted server)

The easiest way to use this server is to connect to the Brandfetch-hosted

endpoint โ€” no install, no infrastructure:

code
https://mcp.brandfetch.io/mcp

Authentication uses a Brandfetch MCP token (a `bf1.` bearer token). Generate one

from the Keys and MCP page in the

Brandfetch dashboard, or connect via OAuth

from a client that supports it.

Claude Desktop / Claude Code

json
{
  "mcpServers": {
    "brandfetch": {
      "type": "http",
      "url": "https://mcp.brandfetch.io/mcp",
      "headers": {
        "Authorization": "Bearer bf1.YOUR_TOKEN"
      }
    }
  }
}

Cursor

Add to `~/.cursor/mcp.json` (or the project `.cursor/mcp.json`):

json
{
  "mcpServers": {
    "brandfetch": {
      "url": "https://mcp.brandfetch.io/mcp",
      "headers": {
        "Authorization": "Bearer bf1.YOUR_TOKEN"
      }
    }
  }
}

Clients that support OAuth can instead point at `https://mcp.brandfetch.io/mcp`

with no token and complete the authorization flow in the browser.

Quota errors

`get_brand`, `enrich_transaction`, and `get_brand_context` consume API credits

from your plan; `brand_search` and `build_logo_urls` don't and keep working

when your credits run out.

  • 429 "API quota exhausted" โ€” your key has used all of its API credits.

Check usage or upgrade in the Brandfetch dashboard.

  • 403 "Forbidden" โ€” the key has no available API credits or lacks access

to that endpoint. The key itself may be valid, so check your plan and key

status in the dashboard before rotating it.

Self-hosting

This is an HTTP (streamable-http) MCP server built with

FastMCP. You can run your own instance with

Docker.

bash
docker build -t brandfetch-mcp-server .
docker run --rm -p 8080:8080 brandfetch-mcp-server

The server then listens on `http://localhost:8080/mcp`. Point your MCP client at

that URL and send your Brandfetch credentials as a `Bearer` token.

> The `Dockerfile` bundles the AWS Lambda Web Adapter

> and a few `AWS_LWA_*` environment variables. These are inert outside of AWS

> Lambda and can be ignored (or removed) for a plain container/host deployment.

Running without Docker

bash
uv sync
uv run uvicorn src.main:app --host 0.0.0.0 --port 8080

Development

Requires uv and Python 3.11.

bash
uv sync                 # install dependencies
uv run pytest           # run the tests
uv run ruff check .     # lint
uv run ruff format .    # format

License

MIT

Frequently asked questions

What is brandfetch-mcp-server?

brandfetch-mcp-server is ๐Ÿ”ฅ Official code of the Brandfetch MCP Server - Provides access to all the API products from Brandfetch.

How do I install brandfetch-mcp-server?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is brandfetch-mcp-server open source?

Yes โ€” it is hosted on GitHub at https://github.com/Brandfetch/brandfetch-mcp-server and has 9 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP