{
  "info": {
    "name": "Copyleaks — mcp.ai",
    "description": "REST API for the Copyleaks 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/copyleaks",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "copyleaks_check_writing",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/writing",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "writing"
          ]
        },
        "description": "Return grammar, mechanics, structure, word-choice, and readability feedback synchronously. By default this returns fixed sandbox mock output, not feedback on the submitted text; set sandbox=false for ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"sandbox\": false,\n  \"scan_id\": \"\",\n  \"language\": \"\",\n  \"score_weights\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "copyleaks_detect_ai_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/detect/ai/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "detect",
            "ai",
            "text"
          ]
        },
        "description": "Classify text as human- or AI-written synchronously. By default this returns fixed sandbox mock output, not analysis of the submitted text; set sandbox=false for real analysis, which may consume AI de",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"explain\": false,\n  \"sandbox\": false,\n  \"scan_id\": \"\",\n  \"language\": \"\",\n  \"sensitivity\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "copyleaks_get_ai_text_credit_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ai/text/credit/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ai",
            "text",
            "credit",
            "balance"
          ]
        },
        "description": "Return the connected account's separate AI Text Detector wallet balance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "copyleaks_get_credit_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credit/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credit",
            "balance"
          ]
        },
        "description": "Return the connected Copyleaks account's general plagiarism and authenticity scan credit balance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "copyleaks_get_supported_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/supported/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "supported",
            "metadata"
          ]
        },
        "description": "Return one public Copyleaks capability catalog: OCR languages, AI text file types, cross-language options, plagiarism file types, or writing correction definitions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language_code\": \"\",\n  \"metadata_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "copyleaks_moderate_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/moderate/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "moderate",
            "text"
          ]
        },
        "description": "Detect harmful-content labels in text synchronously. By default this returns fixed sandbox mock output, not moderation of the submitted text; set sandbox=false for real moderation, which may consume c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"sandbox\": false,\n  \"scan_id\": \"\",\n  \"language\": \"\",\n  \"label_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}