# Gatherup — how to use (mcp.ai)

Connect your Gatherup account and use 9 tools for reviews straight from your AI agent. Connect with your own API key. GatherUp is a customer feedback and online review management platform that helps businesses collect, manage, and leverage customer feedback to improve their online reputation.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_gatherup?ms=1787293380000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `gatherup_delete_business`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/gatherup`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/gatherup/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/gatherup/delete/business` — 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: { businessId: integer }
- `POST https://api.mcp.ai/api/gatherup/find/agency/client/id` — 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: { businessId: integer }
- `POST https://api.mcp.ai/api/gatherup/get/business` — Retrieve detailed information about a specific GatherUp business location. Returns comprehensive business data including: name, contact details (phone, address), timezone, business type, subscription 
  - body: { businessId: integer }
- `POST https://api.mcp.ai/api/gatherup/get/business/types` — 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: { search?: string }
- `POST https://api.mcp.ai/api/gatherup/get/customer` — 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: { customerId: integer }
- `POST https://api.mcp.ai/api/gatherup/get/widget/html` — 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: { type: string, limit?: integer, widgetId?: integer, businessId: integer }
- `POST https://api.mcp.ai/api/gatherup/search/business` — 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: { by: string, search: string }
- `POST https://api.mcp.ai/api/gatherup/send/customer/feedback` — 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: { jobId?: string, customerId: integer, checkThreshold?: integer, ratingRevision?: integer }
- `POST https://api.mcp.ai/api/gatherup/set/user/password` — 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: { userId: integer, password: string }

## Example prompts
- "What can I do in Gatherup?"
- "Show me a summary of my Gatherup account"

## More
- Page: https://mcp.ai/gatherup
- Agent spec (llms.txt): https://mcp.ai/gatherup/llms.txt
- Postman collection: https://mcp.ai/gatherup/postman.json
