Yes, Wheelhouse has an official MCP server. Announced July 2, 2026, it exposes 58 tools built on the Wheelhouse Revenue Management APIs, with what Wheelhouse describes as 1:1 parity with the Wheelhouse UI. To connect it to Claude, enable MCP access on the Api Key page of your Wheelhouse dashboard, then add the endpoint https://mcp.usewheelhouse.com/mcp as a custom connector in Claude and sign in through the OAuth prompt. Setup takes about two minutes and requires no code. The server is read-write: Claude can read prices, comps, and reservations, and can also change pricing preferences if you ask it to.
How the connection works
Wheelhouse took the hosted route. According to the Wheelhouse changelog (July 2026), the MCP server connects "AI coding assistants and chat clients" including Claude, Cursor, and VS Code directly to your Wheelhouse account, with access tied to each user's account. Under the hood it sits on the Wheelhouse Revenue Management API. According to Wheelhouse's RM API reference, when you use the API through the MCP server you authenticate with OAuth via WorkOS AuthKit, and the server attaches your RM API key to requests automatically. You never handle the key yourself.
Claude
Web, Desktop, or Claude Code with the connector added
OAuth sign-in
WorkOS AuthKit browser prompt, your Wheelhouse login
Your Wheelhouse account
58 tools: prices, comps, reservations, preferences
This connector can write, not just read
Wheelhouse is explicit about this. In its announcement it says you are "not working with a simplified read-only layer": the MCP server exposes "the same data and levers your team uses inside the Wheelhouse UI," including pricing preferences, min/max rules, custom rates, reservations, and comp data.
That is powerful and worth respecting. Keep exploratory sessions to read-style questions, and when you do want Claude to change a preference or set a custom rate, ask it to show you the exact change before it runs the tool. Our PriceLabs guide ships read-only by design; Wheelhouse's official server does not have a documented read-only mode, so the discipline lives in how you prompt.
What you can ask Claude once connected
These map to what Wheelhouse says the tools cover: price recommendations, listing preferences, custom rates, reservations, KPIs, and market and neighborhood-level pricing and occupancy data.
Prerequisites
- A Wheelhouse account with your listings connected. MCP access and usage is tied to your user account within Wheelhouse.
- Claude on the web, Claude Desktop, or the Claude Code CLI. According to Anthropic's help center, custom connectors are available on Free, Pro, Max, Team, and Enterprise plans (Free is limited to one custom connector).
- Nothing else. No Node.js, no local server, no config file editing. That is the practical difference from the DIY setups elsewhere in this series.
Setup walkthrough
Enable MCP access in Wheelhouse
Wheelhouse's announcement describes the flow as: open your account's API Key area and enable MCP access. In the current dashboard, the Api Key page lives under your profile menu:
- Log in to Wheelhouse and click your profile name in the top-right corner.
- Select Api Key from the dropdown.
- Enable MCP Access. Wheelhouse shows client-specific setup instructions here for Claude, Cursor, VS Code, and other MCP clients.
You do not need to copy an API key for the MCP route. Per the RM API reference, the OAuth flow attaches your RM key to requests server-side. (Manual RM API keys exist on the same page if you ever want to hit the API directly.)
Add the connector to Claude
The endpoint is the same for every client:
https://mcp.usewheelhouse.com/mcp
Claude web and Claude Desktop
- Open Settings, then Connectors.
- Click Add custom connector.
- Paste
https://mcp.usewheelhouse.com/mcpas the server URL and click Add.
On Team and Enterprise plans an Owner adds the connector under Organization settings first; members then hit Connect on it.
Claude Code (CLI)
claude mcp add --transport http wheelhouse \
https://mcp.usewheelhouse.com/mcp
Then run /mcp inside Claude Code to trigger authentication.
Sign in when the OAuth prompt appears
The first time Claude touches the connector, your browser opens a hosted sign-in page (WorkOS AuthKit). Log in with your Wheelhouse credentials and approve access. There is no token to paste anywhere; the authorization is stored by your Claude client and scoped to your Wheelhouse user account.
Enable it in a conversation and test
In Claude web or Desktop, open a new chat, click the tools menu, and make sure the Wheelhouse connector is toggled on. Then ask something that forces a real round trip:
Try it
Troubleshooting
401 "invalid_token" or authentication failed
The server's own error message tells you the fix: "clear authentication tokens in your MCP client and reconnect. Your client should automatically re-register and obtain new tokens." In Claude web or Desktop, disconnect the Wheelhouse connector in Settings, then reconnect and run the OAuth sign-in again. In Claude Code, run /mcp and re-authenticate the wheelhouse server.
Claude doesn't show any Wheelhouse tools
Three usual causes. First, the connector is added but not enabled for the current conversation; check the tools menu in the chat input. Second, MCP Access was never enabled on your Wheelhouse Api Key page (Step 1). Third, on Claude Desktop, restart the app after adding a connector so it picks up the new configuration.
"Add custom connector" is missing or greyed out
According to Anthropic's help center, custom connectors are available on Free, Pro, Max, Team, and Enterprise plans, but Free accounts are limited to one custom connector, and on Team and Enterprise plans only an organization Owner can add one. If you're on a work plan, ask your Owner to add the Wheelhouse endpoint under Organization settings, then connect to it from your own Settings.
429 Too Many Requests on big portfolio queries
Wheelhouse's RM API reference documents a rate limit of 60 requests per minute. A portfolio-wide question can fan out into dozens of tool calls. If Claude hits a 429, ask it to work in smaller batches ("do 10 listings at a time") or narrow the date range.
I want read-only access
Wheelhouse's hosted server doesn't document a read-only mode; it advertises full parity with the UI. If you want a hard guarantee that Claude can never write, you can build a small local MCP server that only wraps the RM API's read endpoints (listings, recommendations, reservations, market reports), using your RM API key with the X-Integration-Api-Key header against https://api.usewheelhouse.com/ss_api/v1/. Our PriceLabs guide shows exactly that pattern end to end.
FAQ
Does Wheelhouse have an official MCP server?
Yes. Wheelhouse announced it on July 2, 2026 in its changelog under the title "Wheelhouse MCP: Your Entire Platform, API-First." It exposes 58 tools built on the Revenue Management APIs and works with Claude, Cursor, VS Code, and other MCP clients. The endpoint is https://mcp.usewheelhouse.com/mcp.
Is the Wheelhouse MCP server read-only?
No. Wheelhouse states you get "the same data and levers your team uses inside the Wheelhouse UI": pricing preferences, min/max rules, reservations, comp data, and custom rates. Claude can change settings if you ask it to, so review write requests before approving them.
Does it cost extra?
As of July 2026, Wheelhouse's help center says the RM API is "currently in free beta" and "will become a paid feature once it is officially released." MCP access is tied to your Wheelhouse user account. On the Claude side, custom connectors are available on every plan including Free (which allows one).
Can I skip MCP and use the Wheelhouse API directly?
Yes. Wheelhouse publishes several APIs: the Revenue Management API (full account access, the one MCP is built on), the Wheelhouse Pro API and Lite API for price recommendations, a Demand Signal API, and Market and Comps APIs available by request to partners@usewheelhouse.com. Direct RM API calls authenticate with an X-Integration-Api-Key header. For chatting with your data in Claude, the hosted MCP server is the shortest path.
How does this compare to connecting PriceLabs to Claude?
As of July 2026, PriceLabs has no official MCP server, so our PriceLabs guide walks you through building a small local one on the PriceLabs Customer API, which is billed at $1 per synced listing per month. Wheelhouse hosts an official server, so setup is paste-a-URL-and-sign-in. If you run both tools, the two guides side by side make a fair head-to-head of the DIY and hosted approaches.
Pricing is half the picture
Once Claude can see your rates, the natural next question is whether it can see the units themselves. Pricing data tells you what a night is worth; it doesn't tell you the hot tub cover is cracked or the turnover missed the guest bathroom. That's the other half we care about: RapidEye analyzes turnover photos and walkthrough video to catch damage and missed work, and its API can sit in the same Claude conversation as your Wheelhouse connector, so "how is Unit 14 priced" and "what condition is Unit 14 in" get answered in one place.
Browse the rest of the series at /claude-guides/: PMS connections (Guesty, Hostaway, OwnerRez, Hostfully, Hospitable), operations tools (Turno, Operto Teams), guest screening (Safely), smart locks (Seam), and the PriceLabs sibling to this page.
Other guides
Connect PriceLabs to Claude
No official MCP there yet, so we build a read-only server on the Customer API. The DIY counterpart to this page.
Connect OwnerRez to Claude
Bookings, properties, guests, and payments through a personal access token.
Connect Hostaway to Claude
Listings, reservations, calendar, and tasks in plain English from one of the biggest PMS platforms.

