- Home
- MCP servers
- Rezdy Agent
Rezdy Agent
- typescript
2
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jezweb-rezdy-agent-mcp": {
"command": "node",
"args": [
"/path/to/rezdy-agent-mcp/build/index.js"
],
"env": {
"REZDY_API_KEY": "abc123",
"REZDY_ENVIRONMENT": "production"
}
}
}
}This MCP server enables seamless integration with the Rezdy Agent API, letting you search marketplace products, manage bookings, handle customers, and process payments with agent-focused pricing and commissions. It is designed to work in both staging and production environments, with built-in rate limiting and flexible deployment options to fit your workflow.
How to use
Connect your MCP client to the Rezdy Agent MCP server to search products, check availability, quote and create bookings, manage customers, and process payments. Start by configuring your server with your API key and environment, then perform actions in practical sequences like discovering products, validating availability, issuing quotes, and confirming bookings. Customer data and commissions are handled through agent-owned records and pricing rules.
How to install
Prerequisites: ensure you have Node.js installed on your system. You may also use Docker if you prefer containerized deployment.
Step 1: Install dependencies and build the MCP server locally.
Step 2: Run the server in your environment (development or production) using the provided start command.
Configuration and operation notes
Configure the MCP connection by specifying your Rezdy Agent API key and the target environment. You can configure via the rezdy_agent_configure tool in your project with the required apiKey and environment fields.
For Claude Desktop or other editors, reference the explicit server command to start the MCP locally. The recommended approach is to run the Node process that builds the MCP server and point your editor to execute that process.
Troubleshooting and notes
If you encounter rate limiting, the server automatically queues excess requests and retries after the rate limit window. If you see persistent errors, verify your API key permissions and ensure dates and customer data conform to expected formats.
Common issues include misconfigured paths, missing build steps, or permission errors on Unix systems. Ensure the executable has proper permissions and that the path to the built index is correct in your editor configuration.
Available tools
rezdy_agent_configure
Configure API key and environment for the Rezdy Agent MCP server.
rezdy_agent_search_products
Search marketplace products with filters.
rezdy_agent_get_product
Get detailed information about a product.
rezdy_agent_get_product_pickups
Retrieve pickup locations for a product.
rezdy_agent_search_availability
Check real-time availability with agent pricing.
rezdy_agent_quote_booking
Obtain a booking quote with commission details.
rezdy_agent_create_booking
Create a confirmed booking.
rezdy_agent_get_booking
Fetch booking details.
rezdy_agent_update_booking
Update an existing booking.
rezdy_agent_cancel_booking
Cancel a booking.
rezdy_agent_search_customers
Search agent-owned customer database.
rezdy_agent_create_customer
Create a new customer profile.
rezdy_agent_get_customer
Get customer details.
rezdy_agent_get_categories
Get product categories.
rezdy_agent_get_locations
Get marketplace locations.
rezdy_agent_get_suppliers
Get marketplace suppliers.