{
  "info": {
    "name": "Gatherup — mcp.ai",
    "description": "REST API for the Gatherup 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/gatherup",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gatherup_delete_business",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/business",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "business"
          ]
        },
        "description": "Permanently deletes a business location from GatherUp. This is a destructive operation that cannot be undone. **When to use**: Remove business locations that are no longer needed or were created in er",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"businessId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_find_agency_client_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/agency/client/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "agency",
            "client",
            "id"
          ]
        },
        "description": "Find the client ID for a specific business in GatherUp agency accounts. This tool retrieves the numeric client identifier associated with a business location. Use this when you need to look up the cli",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"businessId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_get_business",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/business",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "business"
          ]
        },
        "description": "Retrieve detailed information about a specific GatherUp business location. Returns comprehensive business data including: name, contact details (phone, address), timezone, business type, subscription ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"businessId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_get_business_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/business/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "business",
            "types"
          ]
        },
        "description": "Retrieves the list of available business categories from GatherUp (e.g., Restaurant, Hotel, Dental Office). Use this to: - Get valid business type IDs for creating new businesses - Discover available ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_get_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "customer"
          ]
        },
        "description": "Retrieves detailed information about a specific customer from GatherUp by their customer ID. Use this action to get customer details including name, email, phone, rating, feedback status, and other cu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customerId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_get_widget_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/widget/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "widget",
            "html"
          ]
        },
        "description": "Retrieve pre-formatted widget or badge HTML code with schema.org structure and SEO-friendly content. Returns ready-to-embed HTML code that displays customer reviews or badges on your website. The HTML",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"widgetId\": 0,\n  \"businessId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_search_business",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/business",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "business"
          ]
        },
        "description": "Search for a GatherUp business location by custom identifier and retrieve its business ID. This tool locates business locations using user-defined identifiers (customField or extraField) that you've a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"by\": \"\",\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_send_customer_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/customer/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "customer",
            "feedback"
          ]
        },
        "description": "Send a feedback request to a customer to collect their rating and review. Use this when you want to automatically request feedback after a customer interaction or transaction. Ensure the customer exis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobId\": \"\",\n  \"customerId\": 0,\n  \"checkThreshold\": 0,\n  \"ratingRevision\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gatherup_set_user_password",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/user/password",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "user",
            "password"
          ]
        },
        "description": "Sets a new password for an existing user in GatherUp. Use this action to update user credentials securely. **Prerequisites**: - Valid userId (user must exist in your GatherUp account) - Password must ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": 0,\n  \"password\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}