{
  "info": {
    "name": "Melo — mcp.ai",
    "description": "REST API for the Melo 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/melo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "melo_get_cities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cities"
          ]
        },
        "description": "Tool to retrieve a list of cities with optional filters. Use when you need to fetch available cities before processing location-specific data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"search\": \"\",\n  \"per_page\": 0,\n  \"country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "melo_list_searches",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/searches",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "searches"
          ]
        },
        "description": "Retrieves all property searches saved by the authenticated user from the Melo API. Use this tool to: - View all saved property searches with their filtering criteria - Check notification settings for ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"title\": \"\",\n  \"order_title\": \"\",\n  \"notification_enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "melo_simulate_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/simulate/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "simulate",
            "webhook"
          ]
        },
        "description": "Simulates sending a Melo webhook event to a specified endpoint for testing webhook integrations. This tool triggers the Melo API to send a sample webhook payload (either a property match or event noti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"endpoint\": \"\",\n  \"event_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}