Skip to main content
ClaudeWave
Brandfetch avatar
Brandfetch

brandfetch-mcp-server

View on GitHub

🔥 Official code of the Brandfetch MCP Server - Provides access to all the API products from Brandfetch.

MCP ServersOfficial Registry8 stars1 forksPythonMITUpdated 3d ago
Install in Claude Code / Claude Desktop
Method: UVX (Python) · brandfetch-mcp-server
Claude Code CLI
claude mcp add brandfetch -- uvx brandfetch-mcp-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "brandfetch": {
      "command": "uvx",
      "args": ["brandfetch-mcp-server"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Package name inferred from the repository name. Verify it exists on PyPI, or clone https://github.com/Brandfetch/brandfetch-mcp-server and follow its README.
Use cases

MCP Servers overview

# Brandfetch MCP Server

The official [Model Context Protocol](https://modelcontextprotocol.io) server for
[Brandfetch](https://brandfetch.com). 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

| Tool                 | Description                                                                     |
| -------------------- | ------------------------------------------------------------------------------- |
| `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).        |
| `get_asset_base64`   | Fetch a Brandfetch CDN asset (logo, icon, symbol, image) as base64.             |

## Quick start (hosted server)

The easiest way to use this server is to connect to the Brandfetch-hosted
endpoint — no install, no infrastructure:

```
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](https://developers.brandfetch.com), 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.

## Self-hosting

This is an HTTP (streamable-http) MCP server built with
[FastMCP](https://github.com/jlowin/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](https://github.com/awslabs/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](https://docs.astral.sh/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](./LICENSE)

What people ask about brandfetch-mcp-server

What is Brandfetch/brandfetch-mcp-server?

+

Brandfetch/brandfetch-mcp-server is mcp servers for the Claude AI ecosystem. 🔥 Official code of the Brandfetch MCP Server - Provides access to all the API products from Brandfetch. It has 8 GitHub stars and was last updated 3d ago.

How do I install brandfetch-mcp-server?

+

You can install brandfetch-mcp-server by cloning the repository (https://github.com/Brandfetch/brandfetch-mcp-server) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Brandfetch/brandfetch-mcp-server safe to use?

+

Brandfetch/brandfetch-mcp-server has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains Brandfetch/brandfetch-mcp-server?

+

Brandfetch/brandfetch-mcp-server is maintained by Brandfetch. The last recorded GitHub activity is from 3d ago, with 0 open issues.

Are there alternatives to brandfetch-mcp-server?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy brandfetch-mcp-server to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Brandfetch/brandfetch-mcp-server
[![Featured on ClaudeWave](https://claudewave.com/api/badge/brandfetch-brandfetch-mcp-server)](https://claudewave.com/repo/brandfetch-brandfetch-mcp-server)
<a href="https://claudewave.com/repo/brandfetch-brandfetch-mcp-server"><img src="https://claudewave.com/api/badge/brandfetch-brandfetch-mcp-server" alt="Featured on ClaudeWave: Brandfetch/brandfetch-mcp-server" width="320" height="64" /></a>

More MCP Servers

brandfetch-mcp-server alternatives