npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

brandfetch-mcp-server

v1.0.0

Published

MCP server for the Brandfetch API — brand data, search, transaction lookup, and the Logo CDN

Readme

brandfetch-mcp

MCP server for the Brandfetch API — 9 tools covering brand retrieval (by domain, ticker, ISIN, crypto symbol, brand ID), brand search, transaction-to-merchant resolution, and the Logo CDN. Supports multiple Brandfetch accounts in a single server instance.

Installation

npm

npm install -g brandfetch-mcp-server

GitHub Packages

npm install -g @eyalm321/brandfetch-mcp-server --registry=https://npm.pkg.github.com

Configuration

Brandfetch uses two credentials:

  • BRANDFETCH_API_KEY — Bearer token for the Brand API and transaction lookup. Get one at developers.brandfetch.com.
  • BRANDFETCH_CLIENT_ID — public Client ID for the Brand Search API and Logo CDN. Free, also from the developer portal.

Configure either or both — tools that need a missing credential will surface a clear error.

Single account

export BRANDFETCH_API_KEY="bf_..."
export BRANDFETCH_CLIENT_ID="..."

Multiple accounts

Create a JSON file listing your accounts and point BRANDFETCH_ACCOUNTS_FILE at it:

// ~/.brandfetch-accounts.json
[
  { "user": "default", "BRANDFETCH_API_KEY": "bf_...", "BRANDFETCH_CLIENT_ID": "..." },
  { "user": "alice",   "BRANDFETCH_API_KEY": "bf_...", "BRANDFETCH_CLIENT_ID": "..." },
  { "user": "acme",    "BRANDFETCH_CLIENT_ID": "..." }
]
export BRANDFETCH_ACCOUNTS_FILE="$HOME/.brandfetch-accounts.json"

The shorthand aliases apiKey and clientId are also accepted inside the file.

Pass user to any tool to switch accounts:

{ "name": "brandfetch_brand_search", "arguments": { "name": "Nike" } }
{ "name": "brandfetch_brand_search", "arguments": { "name": "Nike", "user": "alice" } }

User identifiers are case-insensitive.

Tools

| Tool | Endpoint | Auth | | --- | --- | --- | | brandfetch_brand_get | GET /v2/brands/{identifier} | API key | | brandfetch_brand_get_by_domain | GET /v2/brands/domain/{domain} | API key | | brandfetch_brand_get_by_ticker | GET /v2/brands/ticker/{ticker} | API key | | brandfetch_brand_get_by_isin | GET /v2/brands/isin/{isin} | API key | | brandfetch_brand_get_by_crypto | GET /v2/brands/crypto/{symbol} | API key | | brandfetch_brand_from_transaction | POST /v2/brands/transaction | API key | | brandfetch_brand_search | GET /v2/search/{name}?c={clientId} | Client ID | | brandfetch_logo_url | https://cdn.brandfetch.io/{identifier}?c={clientId} | Client ID | | brandfetch_list_users | (local) | none |

Claude Desktop config

{
  "mcpServers": {
    "brandfetch": {
      "command": "npx",
      "args": ["-y", "brandfetch-mcp-server"],
      "env": {
        "BRANDFETCH_API_KEY": "bf_...",
        "BRANDFETCH_CLIENT_ID": "..."
      }
    }
  }
}

Development

npm install
npm test
npm run build

License

MIT