guesty-mcp-server 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +60 -1
- package/package.json +2 -2
- package/server.json +2 -2
- package/.mcpregistry_github_token +0 -1
- package/.mcpregistry_registry_token +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,69 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the Guesty MCP Server will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.4.3] - 2026-03-27
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Updated package description to reflect full 38-tool capability
|
|
9
|
+
- Updated CHANGELOG with complete version history (v0.3.0–v0.4.2)
|
|
10
|
+
|
|
11
|
+
## [0.4.2] - 2026-03-27
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- MCP Registry namespace case fix (`io.github.DLJRealty/guesty`)
|
|
15
|
+
- Added `.gitignore` entry for token files
|
|
16
|
+
|
|
17
|
+
## [0.4.1] - 2026-03-27
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Server.json description length exceeding MCP Registry limits
|
|
21
|
+
|
|
22
|
+
## [0.4.0] - 2026-03-27
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- MCP Registry `server.json` and Smithery `smithery.yaml` config
|
|
26
|
+
- `mcpName` field in package.json for registry discovery
|
|
27
|
+
- Expanded from 29 to **38 tools**:
|
|
28
|
+
- `get_reservation_financials` - Detailed financial breakdown per reservation
|
|
29
|
+
- `get_reservation_notes` - Internal notes on reservations
|
|
30
|
+
- `add_reservation_note` - Add notes to reservations
|
|
31
|
+
- `get_listing_pricing` - Pricing rules and rate plans
|
|
32
|
+
- `get_account_info` - Guesty account details
|
|
33
|
+
- `create_webhook` - Register webhooks for real-time events
|
|
34
|
+
- `delete_webhook` - Remove registered webhooks
|
|
35
|
+
- `get_custom_fields` - Custom field definitions
|
|
36
|
+
- `update_custom_fields` - Update custom field values
|
|
37
|
+
- Delete helper utility for webhook management
|
|
38
|
+
- Improved error handling across all tools
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
- 5 failing tools identified and fixed via E2E test against live Guesty API
|
|
42
|
+
|
|
43
|
+
## [0.3.0] - 2026-03-26
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
- Expanded from 15 to **29 tools**:
|
|
47
|
+
- `get_photos` - Property photo URLs and metadata
|
|
48
|
+
- `get_guest` - Guest profile details
|
|
49
|
+
- `get_guests` - Search and list guests
|
|
50
|
+
- `get_occupancy_stats` - Occupancy rates and statistics
|
|
51
|
+
- `get_revenue_stats` - Revenue analytics and trends
|
|
52
|
+
- And additional operational tools
|
|
53
|
+
- Docker support with `Dockerfile` and `docker-compose.yml`
|
|
54
|
+
- HTTP transport module for remote MCP access (non-stdio)
|
|
55
|
+
- Integration test suite (`tests/test-tools.js`) for all tools
|
|
56
|
+
- CLI tool (`guesty-cli`) for command-line usage
|
|
57
|
+
- Security guide (`SECURITY.md`)
|
|
58
|
+
- Health check endpoint for production monitoring
|
|
59
|
+
- Webhook handler module for real-time Guesty events (v3 prep)
|
|
60
|
+
- Multi-account design doc for v3 architecture
|
|
61
|
+
- GitHub Actions CI workflow
|
|
62
|
+
- Example configs for Claude Code and Docker Compose
|
|
63
|
+
|
|
5
64
|
## [0.2.0] - 2026-03-26
|
|
6
65
|
|
|
7
66
|
### Added
|
|
8
|
-
- `create_reservation` - Create direct bookings (website
|
|
67
|
+
- `create_reservation` - Create direct bookings (website to Guesty)
|
|
9
68
|
- `get_reviews` - Fetch guest reviews from all channels
|
|
10
69
|
- `get_calendar` - Check availability and pricing by date range
|
|
11
70
|
- `update_calendar` - Block/unblock dates, set minimum nights
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "guesty-mcp-server",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "MCP
|
|
3
|
+
"version": "0.4.3",
|
|
4
|
+
"description": "The first MCP server for Guesty property management. 38 tools for reservations, guests, messaging, pricing, financials, calendars, reviews, tasks, and webhooks.",
|
|
5
5
|
"main": "src/server.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"guesty-mcp-server": "src/server.js",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/DLJRealty/guesty-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.4.
|
|
9
|
+
"version": "0.4.2",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "guesty-mcp-server",
|
|
14
|
-
"version": "0.4.
|
|
14
|
+
"version": "0.4.2",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ghu_erLfGY4zAYVbjzUz0jwdlWjPzYIRaP0Kql1T
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NzQ1NzkyNTksIm5iZiI6MTc3NDU3ODk1OSwiaWF0IjoxNzc0NTc4OTU5LCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6IkRMSlJlYWx0eSIsInBlcm1pc3Npb25zIjpbeyJhY3Rpb24iOiJwdWJsaXNoIiwicmVzb3VyY2UiOiJpby5naXRodWIuRExKUmVhbHR5LyoifV19.U8Lmee0qloF-2ugZuRdpi7Wnu-HeODY6kfMmztM1TamM4mWppFfytEELC9EM6nTs6Sq_y1HSKOmHiWOhODVYDg","expires_at":1774579259}
|