{
  "info": {
    "name": "Winston AI — mcp.ai",
    "description": "REST API for the Winston 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/winston_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "winston_ai_ai_text_detection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ai/text/detection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ai",
            "text",
            "detection"
          ]
        },
        "description": "Tool to detect AI-generated text. Use when you need to assess whether a given text is AI-generated. Each call consumes credits based on word count.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"version\": \"\",\n  \"language\": \"\",\n  \"includeSentences\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "winston_ai_plagiarism_detection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/plagiarism/detection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "plagiarism",
            "detection"
          ]
        },
        "description": "Tool to detect plagiarism. Use after preparing text to verify originality against online sources.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"country\": \"\",\n  \"language\": \"\",\n  \"excluded_sources\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "winston_ai_text_compare",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/text/compare",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "text",
            "compare"
          ]
        },
        "description": "Tool to compare two texts. Use when you need to measure similarity between two final texts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text_1\": \"\",\n  \"text_2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}