Lodgify MCP Server

A Model Context Protocol (MCP) server for the Lodgify vacation rental API. It exposes tools for managing properties, bookings and calendar data.

Local serverstdioPython

What is the Lodgify MCP server?

If you want an AI assistant working directly with Lodgify, the lodgify mcp server is the bridge. A Model Context Protocol (MCP) server for the Lodgify vacation rental API. It exposes tools for managing properties, bookings and calendar data.

What Lodgify does

A Model Context Protocol (MCP) server for the Lodgify vacation rental API. It exposes tools for managing properties, bookings and calendar data.

Tools it exposes

Once connected, the assistant can call these 3 tools directly:

  • Properties — get_properties, get_property_by_id
  • Bookings — get_bookings, get_booking_by_id, create_booking, update_booking_status
  • Calendar — get_calendar

Installing the lodgify mcp server

The server is distributed via PyPI as lodgify-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: LODGIFY_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Lodgify sits in that group, and the shape of its toolset — Properties, Bookings, Calendar — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by Fast-Transients, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the lodgify mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Propertiesget_properties, get_property_by_id
Bookingsget_bookings, get_booking_by_id, create_booking, update_booking_status
Calendarget_calendar

How to install the Lodgify MCP server

{
  "mcpServers": {
    "lodgify": {
      "command": "uvx",
      "args": ["lodgify-mcp-server"],
      "env": {
        "LODGIFY_API_KEY": "your_api_key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LODGIFY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Lodgify to Properties.
  • Use Lodgify to Bookings.
  • Use Lodgify to Calendar.

Frequently asked questions

It connects Lodgify to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Properties, Bookings, Calendar) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lodgify directly.