{
  "info": {
    "name": "Astica AI — mcp.ai",
    "description": "REST API for the Astica AI 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/astica_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "astica_ai_analyze_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/analyze/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "analyze",
            "audio"
          ]
        },
        "description": "Tool to analyze audio input for transcription. Use when you need to convert an audio URL or Base64 string to text.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"do_stream\": 0,\n  \"audio_input\": \"\",\n  \"low_priority\": 0,\n  \"model_version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "astica_ai_astica_read_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/astica/read/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "astica",
            "read",
            "text"
          ]
        },
        "description": "Perform OCR (Optical Character Recognition) on an image to extract text. Supports HTTPS image URLs and Base64-encoded images. Returns detected text blocks with bounding box coordinates. Works with pri",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_url\": \"\",\n  \"model_version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}