homeexchange-mcp
Interact with the HomeExchange home-swapping platform — search listings, manage your calendar and availabilities, and handle messages and exchange requests.
README
<div align="center">
HomeExchange MCP
MCP server for HomeExchange — browse listings, manage your calendar, send messages and track exchanges from your AI assistant, in natural language.
Installation · Tools · Examples · Limitations · 🇫🇷 Français
</div>
Overview
This MCP server exposes the HomeExchange platform as 52 tools your assistant can call. Ask in natural language, it executes:
You: Find houses in Mallorca available Aug 5–19 with a pool and at least 2 bedrooms, then show my unread conversations.
Assistant: (calls
he_search_homes, thenhe_get_conversations) 7 matching homes in Mallorca — top pick: a verified 3-bedroom villa with pool, 92 % response rate. You have 2 unread conversations: Marta (Palma) and Lluís (Sóller).
Requirements
- Node.js ≥ 18
- A HomeExchange account with an active subscription
- Any MCP client — Claude Code, Claude Desktop, Cursor, Windsurf…
Installation
Not published to npm — run from the local bundle:
git clone https://github.com/manganate006/homeexchange-mcp
cd homeexchange-mcp
npm install && npm run bundle # → dist/bundle.js
Claude Code
claude mcp add homeexchange \
--env HE_ACCESS_TOKEN=your_token \
-- node /absolute/path/to/homeexchange-mcp/dist/bundle.js
Claude Desktop / Cursor
Add to claude_desktop_config.json (or your client's MCP config):
{
"mcpServers": {
"homeexchange": {
"command": "node",
"args": ["/absolute/path/to/homeexchange-mcp/dist/bundle.js"],
"env": { "HE_ACCESS_TOKEN": "eyJ..." }
}
}
}
Authentication
⚠️ No automated login. HomeExchange uses Auth0 with AWS WAF CAPTCHA + Cloudflare Turnstile, which block automated sessions. You paste a token from your browser once.
- Log in to homeexchange.com
- DevTools → Application → Cookies →
homeexchange.com - Copy the value of
oidc_access_token→ set it asHE_ACCESS_TOKEN
The token lasts ~24 h and is cached at ~/.homeexchange-mcp-tokens.json. Provide the full cookie string via HE_COOKIES (including PHPSESSID) to enable automatic renewal — no manual step afterwards.
| Variable | Required | Purpose |
|---|---|---|
HE_ACCESS_TOKEN |
one auth method* | JWT from the oidc_access_token cookie |
HE_COOKIES |
one auth method* | Full cookie string; enables auto-renewal if PHPSESSID is included |
* At least one of HE_ACCESS_TOKEN / HE_COOKIES, or inject at runtime with he_set_tokens. Rate-limit tuning (HE_READ_DELAY, HE_WRITE_DELAY, HE_MESSAGE_DELAY, HE_WEB_VERSION) and the full auth priority: see docs/TOOLS.md.
Tools
52 tools, he_ prefix. Summary by domain — full parameters in docs/TOOLS.md.
| Domain | Tools | Examples |
|---|---|---|
| 🏠 Properties | 9 | he_get_home, he_get_calendar, he_update_calendar |
| 👤 Users | 3 | he_get_user, he_get_user_ratings |
| ❤️ Favorites | 7 | he_get_favorites, he_add_favorite, he_create_wishlist |
| 💬 Conversations & messages | 14 | he_get_conversations, he_send_message, he_send_first_message |
| 🔄 Exchanges | 8 | he_get_my_exchanges, he_change_exchange_type, he_rate_home |
| 🔍 Search & subscription | 7 | he_search_homes, he_get_saved_searches |
| 🔐 Auth utilities | 4 | he_auth_status, he_set_tokens |
Examples
- "Search houses in Mallorca available August 5–19 with pool and 2+ bedrooms"
- "Show my unread conversations"
- "Translate the last message from conversation 12345 to French"
- "Mark my calendar unavailable July 15 – August 20"
- "First-contact the owner of home 98765 for Sept 1–8, 4 guests"
- "Switch the exchange in conversation 11111 to reciprocal"
Limitations
- Manual token every ~24 h, unless
PHPSESSIDauto-renewal is configured - No image upload for property/profile photos (multipart not implemented yet)
- No property creation —
POST /v1/homesis not exposed - Conversation pagination is handled client-side (the v3 API ignores the
aftercursor)
Development
npm run dev # tsc watch
npm run build # compile TypeScript
npm run bundle # single-file dist/bundle.js (fast startup)
npx @modelcontextprotocol/inspector node dist/bundle.js
Full tool reference, search-filter format and architecture: docs/TOOLS.md.
License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.