{
  "info": {
    "name": "Autom — mcp.ai",
    "description": "REST API for the Autom 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/autom",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "autom_google_countries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/countries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "countries"
          ]
        },
        "description": "Search for Google-supported countries by name substring. Use this to get valid country codes for Google Search API parameters. Results are ordered by population reach (most populous countries first).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "autom_google_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "images"
          ]
        },
        "description": "Tool to fetch images from Google search results. Use when you need URLs, titles, domains, and metadata for images matching a query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"page\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "autom_google_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "languages"
          ]
        },
        "description": "Tool to retrieve Google-supported languages. Use when you need a list of language codes for localization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "autom_google_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "locations"
          ]
        },
        "description": "Tool to retrieve Google-supported locations. Use when searching for locations by name. Returns locations ordered by reach (most populous first).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}