OwnerRez MCP server. Manage OwnerRez properties, bookings, guests, quotes and inquiries.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"ownerrez": {
"url": "https://ownerrez.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
get_me | read | Get current user Return the authenticated OwnerRez user (verifies your credentials). OwnerRez API: GET /v2/users/me. |
list_properties | read | List properties List rental properties. OwnerRez API: GET /v2/properties. Returns the pageable envelope { items, count, limit, offset, next_page_url }. |
get_property | read | Get a property Fetch a single property by id (includes time_zone). OwnerRez API: GET /v2/properties/{id}. |
list_bookings | read | List bookings List bookings (reservations). OwnerRez API: GET /v2/bookings. Filter by property, date range, changed-since, and status; opt into embedded charges/guest/tags. Returns { items, count, limit, offset, next_page_url }. |
get_booking | read | Get a booking Fetch a single booking by id. OwnerRez API: GET /v2/bookings/{id}. Opt into embedded charges/guest/tags. |
list_guests | read | List guests List guests (contacts). OwnerRez API: GET /v2/guests. NOTE: OwnerRez REQUIRES either `q` (search) or `created_since_utc` on this endpoint. Returns { items, count, limit, offset, next_page_url }. |
get_guest | read | Get a guest Fetch a single guest (contact) by id. OwnerRez API: GET /v2/guests/{id}. |
list_quotes | read | List quotes List quotes. OwnerRez API: GET /v2/quotes. Returns { items, count, limit, offset, next_page_url }. Use the `params` passthrough for documented filters (e.g. property_id, guest_id). |
get_quote | read | Get a quote Fetch a single quote by id. OwnerRez API: GET /v2/quotes/{id}. |
list_listings | read | List listings List channel listings (a property's presence on a listing site such as Airbnb/Vrbo). OwnerRez API: GET /v2/listings. Returns { items, count, limit, offset, next_page_url }. |
get_listing | read | Get a listing Fetch a single channel listing by id. OwnerRez API: GET /v2/listings/{id}. |
list_listing_sites | read | List listing sites List the listing sites (channels, e.g. Airbnb, Vrbo) known to OwnerRez. OwnerRez API: GET /v2/listingsites. |
list_owners | read | List owners List property owners. OwnerRez API: GET /v2/owners. Returns { items, count, limit, offset, next_page_url }. |
list_inquiries | read | List inquiries List guest inquiries (pre-booking leads). OwnerRez API: GET /v2/inquiries. Use `params` for documented filters. |
list_messages | read | List messages List messages from guest-communication threads. OwnerRez API: GET /v2/messages. Use `params` for documented filters (e.g. booking_id). |
list_payments | read | List payments List payments. OwnerRez API: GET /v2/payments. Use `params` for documented filters (e.g. booking_id, since_utc). |
get_payment | read | Get a payment Fetch a single payment by id. OwnerRez API: GET /v2/payments/{id}. |
list_field_definitions | read | List custom-field definitions List custom-field definitions available in the account (the schema for custom fields on properties/bookings/guests). OwnerRez API: GET /v2/fielddefinitions. |
ownerrez_request | read | Raw read request Power-user escape hatch: GET any OwnerRez API path not wrapped by a dedicated tool. READ-ONLY — only GET is allowed. Pass the FULL API path after the host, starting with a slash, INCLUDING any query string, e.g. "/v2/propertysearch?query=beach" or "/v2/bookings/123". Returns the parsed JSON. |
create_guest | write | Create a guest MUTATES OwnerRez data: creates a new guest (contact). OwnerRez API: POST /v2/guests (JSON). Emails/phones/addresses are arrays of objects — pass them via the `fields` passthrough (e.g. email_addresses:[{address:"[email protected]"}]). Returns the created guest. |
update_guest | write | Update a guest MUTATES OwnerRez data: updates an existing guest. OwnerRez API: PATCH /v2/guests/{id} (JSON — only included fields change). Use the `fields` passthrough for arrays (email_addresses/phones/addresses) and any other documented field. |
create_booking | write | Create a booking MUTATES OwnerRez data: creates a new booking (reservation). OwnerRez API: POST /v2/bookings (JSON). A booking ties a guest to a property for a date range; the exact charge/quote shape is account-specific, so pass extra documented fields via `fields`. Returns the created booking. |
update_booking | write | Update a booking MUTATES OwnerRez data: updates an existing booking. OwnerRez API: PATCH /v2/bookings/{id} (JSON — only included fields change). Use the `fields` passthrough for any documented field (dates, guest counts, notes, status). |
create_quote | write | Create a quote MUTATES OwnerRez data: creates a quote for a property + date range (the pre-booking pricing document). OwnerRez API: POST /v2/quotes (JSON). The full quote/charge shape is account-specific — pass extra documented fields via `fields`. Returns the created quote. |
create_message | write | Create a message MUTATES OwnerRez data: posts a message into a guest-communication thread. OwnerRez API: POST /v2/messages (JSON). The exact thread/booking linkage is account-specific — pass extra documented fields (e.g. thread_id, booking_id) via `fields`. Returns the created message. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.