{
  "info": {
    "name": "OneSimpleAPI — mcp.ai",
    "description": "REST API for the OneSimpleAPI 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/onesimpleapi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "onesimpleapi_analyze_readability",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/analyze/readability",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "analyze",
            "readability"
          ]
        },
        "description": "Analyze text for readability, grade level, reading time, difficult-word counts, and sentiment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_calculate_ppp_discount",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/calculate/ppp/discount",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "calculate",
            "ppp",
            "discount"
          ]
        },
        "description": "Calculate a purchasing-power-parity discount and localized price between an origin and a destination country.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"price\": 0,\n  \"max_discount\": 0,\n  \"destination_user_ip\": \"\",\n  \"origin_country_code\": \"\",\n  \"destination_country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_capture_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "screenshot"
          ]
        },
        "description": "Capture a webpage URL or raw HTML as a hosted screenshot and return its URL and rendering metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"force\": false,\n  \"screen\": \"\",\n  \"full_page\": false,\n  \"background\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_convert_currency",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/currency",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "currency"
          ]
        },
        "description": "Convert an amount between supported currencies and return the converted value and exchange rate.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"from_value\": 0,\n  \"to_currency\": \"\",\n  \"from_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_create_short_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/short/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "short",
            "url"
          ]
        },
        "description": "Create a OneSimpleAPI short URL with optional one-time-use, redirect, query-forwarding, and active-date controls.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"end_date\": \"\",\n  \"single_use\": false,\n  \"start_date\": \"\",\n  \"forward_params\": false,\n  \"temporary_redirect\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_delete_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "file"
          ]
        },
        "description": "Delete a generated OneSimpleAPI file by its hosted URL and return the updated file record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_expand_short_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/expand/short/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "expand",
            "short",
            "url"
          ]
        },
        "description": "Resolve a shortened URL and return its final URL, redirect count, and redirect trace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_generate_or_convert_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/or/convert/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "or",
            "convert",
            "color"
          ]
        },
        "description": "Generate a deterministic color palette from text or convert a supplied color into HEX, RGB, HSL, and related palette values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hue\": 0,\n  \"text\": \"\",\n  \"color\": \"\",\n  \"lightness\": 0,\n  \"saturation\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_generate_pdf",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/pdf",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "pdf"
          ]
        },
        "description": "Generate a PDF from either a webpage URL or raw HTML and return the hosted PDF URL and page metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"html\": \"\",\n  \"page\": \"\",\n  \"force\": false,\n  \"background\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_generate_qr_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/qr/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "qr",
            "code"
          ]
        },
        "description": "Generate a hosted PNG or SVG QR code for a message and return its URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": \"\",\n  \"color\": \"\",\n  \"format\": \"\",\n  \"message\": \"\",\n  \"background\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_get_image_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/image/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "image",
            "information"
          ]
        },
        "description": "Extract dimensions, image metadata, EXIF camera fields, and available GPS details from an image URL. Returned fields vary with the metadata embedded in the image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"raw\": false,\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_list_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files"
          ]
        },
        "description": "Return one page of generated files owned by the connected account, optionally filtered by live or deleted status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_list_short_urls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/short/urls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "short",
            "urls"
          ]
        },
        "description": "Return one page of OneSimpleAPI short URLs and their click statistics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_transform_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transform/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transform",
            "image"
          ]
        },
        "description": "Resize, crop, rotate, flip, filter, border, optimize, and host an image, returning the generated image URL and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"crop\": \"\",\n  \"flip\": \"\",\n  \"page\": 0,\n  \"size\": \"\",\n  \"force\": false,\n  \"image\": \"\",\n  \"border\": 0,\n  \"crop_x\": 0,\n  \"crop_y\": 0,\n  \"format\": \"\",\n  \"rotate\": \"\",\n  \"filters\": \"\",\n  \"optimize\": false,\n  \"crop_mode\": \"\",\n  \"resize_mode\": \"\",\n  \"border_color\": \"\",\n  \"border_method\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "onesimpleapi_validate_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "email"
          ]
        },
        "description": "Validate an email address and assess its domain, MX records, deliverability, disposability, role status, and registration safety.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}