{
  "info": {
    "name": "Uplisting — mcp.ai",
    "description": "REST API for the Uplisting 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/uplisting",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "uplisting_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Register a public callback URL for one booking or property event and return the new webhook ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event\": \"\",\n  \"target_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Permanently remove one Uplisting webhook subscription by its ID. This is destructive and stops future event deliveries to that subscription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_get_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "calendar"
          ]
        },
        "description": "Return up to 12 months of daily availability, rates, and stay restrictions for one property.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to_date\": \"\",\n  \"from_date\": \"\",\n  \"property_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_get_current_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "account"
          ]
        },
        "description": "Return the name and stable UID of the Uplisting account connected by the current API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_get_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "property"
          ]
        },
        "description": "Return one Uplisting property by ID with the related resources supplied by the API.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"property_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_list_bookings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bookings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bookings"
          ]
        },
        "description": "Return one explicitly selected 0-based page of bookings for a property and optional date range, with total and total-page metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"to_date\": \"\",\n  \"per_page\": 0,\n  \"from_date\": \"\",\n  \"property_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_list_properties",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/properties",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "properties"
          ]
        },
        "description": "Return all properties in the connected Uplisting account, including the related resources supplied by the API.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Return the webhook subscriptions registered for the connected Uplisting account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_search_availability",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/availability",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "availability"
          ]
        },
        "description": "Find Uplisting properties available for optional stay dates, guest count, city, and nightly price bounds.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"check_in\": \"\",\n  \"check_out\": \"\",\n  \"max_price\": 0,\n  \"min_price\": 0,\n  \"number_of_guests\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "uplisting_update_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "calendar"
          ]
        },
        "description": "Asynchronously change availability, rates, or stay restrictions for dated days or date ranges on one property. HTTP 202 only means the update was accepted; it may take several minutes to propagate. Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"days\": \"\",\n  \"property_id\": \"\",\n  \"notification_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}