{
  "info": {
    "name": "Plate Recognizer — mcp.ai",
    "description": "REST API for the Plate Recognizer 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/platerecognizer",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "platerecognizer_read_license_plate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/license/plate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "license",
            "plate"
          ]
        },
        "description": "Tool to read license plates from images with confidence scores and optional vehicle details. Use when you need to extract license plate text, region information, or analyze vehicle attributes from ima",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mmc\": false,\n  \"config\": {},\n  \"upload\": \"\",\n  \"regions\": \"\",\n  \"camera_id\": \"\",\n  \"direction\": false,\n  \"timestamp\": \"\",\n  \"upload_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "platerecognizer_snapshot_get_statistics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/snapshot/get/statistics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "snapshot",
            "get",
            "statistics"
          ]
        },
        "description": "Tool to retrieve usage statistics for the current month's Snapshot API recognition calls. Use after making Snapshot API calls to monitor monthly usage.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}