{
  "info": {
    "name": "U301 — mcp.ai",
    "description": "REST API for the U301 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/u301",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "u301_delete_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "link"
          ]
        },
        "description": "Tool to delete a shortened link by its link identifier. Use when you need to remove a shortened link from the system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"link\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "u301_list_shorten_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/shorten/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "shorten",
            "domains"
          ]
        },
        "description": "Tool to list available domains for URL shortening, including public domains and custom domains. Use when you need to see what domains are available for creating short links. Supports pagination and fi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"visibility\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "u301_shorten_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/shorten/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "shorten",
            "link"
          ]
        },
        "description": "Tool to shorten a long URL into a compact short link. Use after obtaining the long URL when you need a shareable link.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"slug\": \"\",\n  \"title\": \"\",\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}