{
  "info": {
    "name": "Veriphone — mcp.ai",
    "description": "REST API for the Veriphone 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/veriphone",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "veriphone_get_example_phone_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/example/phone/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "example",
            "phone",
            "number"
          ]
        },
        "description": "Tool to retrieve an example phone number for a specified country and type. Use after confirming the country code. Example: 'Get an example mobile number for US'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"purpose\": \"\",\n  \"country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "veriphone_verify_phone_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/phone/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "phone",
            "number"
          ]
        },
        "description": "Tool to verify if a phone number is valid. Use when you need to confirm formatting, region, and carrier details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}