{
  "info": {
    "name": "Google Address Validation — mcp.ai",
    "description": "REST API for the Google Address Validation 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/google_address_validation",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "google_address_validation_provide_validation_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/provide/validation/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "provide",
            "validation",
            "feedback"
          ]
        },
        "description": "Tool to provide feedback on an address validation attempt. Use after completing an address validation sequence.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"conclusion\": \"\",\n  \"responseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "google_address_validation_validate_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "address"
          ]
        },
        "description": "Tool to validate and standardize addresses. Use when you need detailed parsing, geocode, and deliverability verdict of an address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address\": {},\n  \"sessionToken\": \"\",\n  \"enableUspsCass\": false,\n  \"languageOptions\": {},\n  \"previousResponseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}