{
  "info": {
    "name": "Logo.dev — mcp.ai",
    "description": "REST API for the Logo.dev 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/logo_dev",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "logo_dev_get_logo_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/logo/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "logo",
            "image"
          ]
        },
        "description": "Tool to retrieve the logo image for a domain. Use when you need the raw image bytes (PNG or SVG) of a specific domain's logo. Use after validating the domain string.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"token\": \"\",\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "logo_dev_search_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "brand"
          ]
        },
        "description": "Tool to search for brands based on a query string. Returns existing brand metadata only — no logo creation or editing. Use when you need to retrieve a list of matching brands with optional pagination ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"offset\": 0,\n  \"country\": \"\",\n  \"industry\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}