{
  "info": {
    "name": "Brandfetch — mcp.ai",
    "description": "REST API for the Brandfetch MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/brandfetch",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "brandfetch_get_brand_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/brand/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "brand",
            "info"
          ]
        },
        "description": "Retrieves brand information including logos, colors, fonts, and company details using a domain, Brand ID, ISIN, or stock ticker. Logo data may be absent for some domains — do not assume logos are alwa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_get_graphql_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/graphql/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "graphql",
            "version"
          ]
        },
        "description": "Tool to retrieve the Brandfetch GraphQL API version. Use when you need to check the current API version via the GraphQL endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_get_taxonomy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/taxonomy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "taxonomy"
          ]
        },
        "description": "Tool to retrieve Brandfetch's taxonomy via GraphQL API. Use this to get a complete list of industries, countries, and geographic regions used in Brandfetch's classification system. The taxonomy includ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_get_transaction_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transaction/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transaction",
            "info"
          ]
        },
        "description": "This tool converts payment transaction labels into detailed merchant brand information. It takes a transaction label (like what you see on your credit card statement) and returns comprehensive brand d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"countryCode\": \"\",\n  \"transactionLabel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_list_subscribable_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscribable/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscribable",
            "events"
          ]
        },
        "description": "Tool to retrieve all available webhook event types that can be subscribed to via the Brandfetch GraphQL API. Returns event names and descriptions for webhook configuration. Available events include br",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to retrieve a list of all webhooks via GraphQL API. Use when you need to query webhook configurations and their statuses in the Brandfetch system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "brandfetch_search_brands",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/brands",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "brands"
          ]
        },
        "description": "Searches for brands by name and returns matching brand information including URLs and icons, enabling rich autocomplete experiences. Use this tool first to resolve a vague name or ticker to a precise ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}