{
  "info": {
    "name": "BigPicture.io — mcp.ai",
    "description": "REST API for the BigPicture.io 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/bigpicture_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bigpicture_io_company_find",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/company/find",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "company",
            "find"
          ]
        },
        "description": "Tool to lookup company data by domain name. Use when you need detailed company profile by providing a website domain. Use after confirming domain correctness.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bigpicture_io_find_company_stream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/company/stream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "company",
            "stream"
          ]
        },
        "description": "Tool to lookup company data by domain with streaming response. Holds connection open until data is ready, avoiding 202 async responses. Use when you need immediate company data without async polling. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bigpicture_io_ip_to_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ip/to/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ip",
            "to",
            "company"
          ]
        },
        "description": "Lookup company information by IP address using BigPicture's IP-to-Company API. Returns detailed company data including: - Company name, domain, description, and legal name - Geographic location of the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bigpicture_io_name_to_domain_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/name/to/domain/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "name",
            "to",
            "domain",
            "search"
          ]
        },
        "description": "Tool to find company domain(s) by company name. Use when you have a company name and need up to 3 likely domains.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}