{
  "info": {
    "name": "Cutt.ly — mcp.ai",
    "description": "REST API for the Cutt.ly 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/cutt_ly",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cutt_ly_shorten_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/shorten/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shorten",
            "url"
          ]
        },
        "description": "Tool to shorten a URL using Cutt.ly Regular API. Creates a shortened link that redirects to the original URL. Use when you need to create a short link for sharing. Supports custom aliases and addition",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"short\": \"\",\n  \"public\": 0,\n  \"noTitle\": 0,\n  \"userDomain\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cutt_ly_view_last_shortened_urls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/view/last/shortened/urls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "view",
            "last",
            "shortened",
            "urls"
          ]
        },
        "description": "This action retrieves a list of recently shortened URLs from your Cutt.ly account. It allows users to view their latest shortened links and their details. Note: Due to API limitations, this action may",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}