Rezdy Agent MCP Server

MCP server for Rezdy Agent API - search marketplace products, manage bookings, and handle customer relationships

Local serverstdioTypeScript

What is the Rezdy Agent MCP MCP server?

MCP server for Rezdy Agent API - search marketplace products, manage bookings, and handle customer relationships. That is what the rezdy agent mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

A Model Context Protocol (MCP) server for integrating with the Rezdy Agent API. This server provides tools for travel agents to search marketplace products, manage bookings, handle customer relationships, and process payments through Claude.

  • Marketplace Product Search — Search products from all suppliers with advanced filtering
  • Availability & Pricing — Real-time availability search with agent commission calculations
  • Booking Management — Quote, create, update, and cancel bookings with 2-step process support
  • Customer Management — Agent-owned customer database with full CRUD operations
  • Payment Processing — Support for both manual and automated payment workflows
  • Commission Calculations — Built-in agent pricing and commission handling

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Cursor — 1. Open Cursor Settings 2. Navigate to Extensions > MCP 3. Add server: json { "mcpServers": { "rezdy-agent": { "command": "node", "args"
  • Configuration — The Configuration tool exposed by this server

Getting it running

The server ships on npm as npm, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: REZDY_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Rezdy Agent MCP's toolset — Cursor, Configuration — is a fair guide to whether it matches your workflow. It is maintained by jezweb; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Rezdy Agent MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Cursor1. Open Cursor Settings 2. Navigate to Extensions > MCP 3. Add server: json { "mcpServers": { "rezdy-agent": { "command": "node", "args": ["/path/to/rezdy-agent-mcp/build/index.js"] } } }
ConfigurationThe Configuration tool exposed by this server.

How to install the Rezdy Agent MCP MCP server

{
  "mcpServers": {
    "rezdy-agent": {
      "command": "npx",
      "args": ["-y", "npm"],
      "env": {
        "REZDY_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
REZDY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Rezdy Agent MCP to Cursor.
  • Use Rezdy Agent MCP to Configuration.

Frequently asked questions

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