{
  "info": {
    "name": "lc.cx — mcp.ai",
    "description": "REST API for the lc.cx 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/lc_cx",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "lc_cx_create_short_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/short/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "short",
            "link"
          ]
        },
        "description": "Shorten one destination URL on lc.cx, optionally choosing its path, tags, note, and workspace. Warning: each successful creation permanently consumes one unit of the current monthly quota, even if the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"tag_ids\": \"\",\n  \"domain_id\": \"\",\n  \"custom_path\": \"\",\n  \"destination\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_create_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tags"
          ]
        },
        "description": "Create one or more tags in a workspace and return their ids for attaching to short links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_delete_short_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/short/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "short",
            "link"
          ]
        },
        "description": "Permanently delete one short link. Deletion does not restore the monthly creation quota.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"link_id\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Permanently delete one tag from the selected workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_get_account_context",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/context",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "context"
          ]
        },
        "description": "Return lc.cx plan and short-link quota information together with available domains and workspaces needed to create and route short links.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_get_short_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/short/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "short",
            "link"
          ]
        },
        "description": "Retrieve one short link by its lc.cx link id from the selected workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"link_id\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_list_short_links",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/short/links",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "short",
            "links"
          ]
        },
        "description": "Return one page of recently created short links in the selected workspace, with an offset for the next page when one may exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": 0,\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Return all tags available in the selected workspace for organizing short links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_update_short_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/short/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "short",
            "link"
          ]
        },
        "description": "Update a short link's destination, note, or complete tag assignment. tag_ids is the full replacement list; resend current ids to preserve them or [] to clear.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"link_id\": \"\",\n  \"tag_ids\": \"\",\n  \"destination\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "lc_cx_update_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tag"
          ]
        },
        "description": "Update the name or color of one tag in the selected workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"tag_id\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}