guesty-mcp-server 0.4.0 → 0.4.1
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/package.json +2 -1
- package/server.json +36 -0
- package/smithery.yaml +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "guesty-mcp-server",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "MCP Server for Guesty Property Management - The first Guesty MCP server",
|
|
5
5
|
"main": "src/server.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"url": "https://github.com/DLJRealty/guesty-mcp-server.git"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/DLJRealty/guesty-mcp-server",
|
|
33
|
+
"mcpName": "io.github.dljrealty/guesty",
|
|
33
34
|
"engines": {
|
|
34
35
|
"node": ">=18.0.0"
|
|
35
36
|
}
|
package/server.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.dljrealty/guesty",
|
|
4
|
+
"description": "First-ever MCP server for Guesty property management. 38 tools for reservations, listings, guests, financials, messaging, tasks, webhooks, pricing, and more.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/DLJRealty/guesty-mcp-server",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.4.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "guesty-mcp-server",
|
|
14
|
+
"version": "0.4.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "Guesty OAuth2 Client ID",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "GUESTY_CLIENT_ID"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"description": "Guesty OAuth2 Client Secret",
|
|
28
|
+
"isRequired": true,
|
|
29
|
+
"format": "string",
|
|
30
|
+
"isSecret": true,
|
|
31
|
+
"name": "GUESTY_CLIENT_SECRET"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
startCommand:
|
|
2
|
+
type: stdio
|
|
3
|
+
configSchema:
|
|
4
|
+
type: object
|
|
5
|
+
required:
|
|
6
|
+
- guestyClientId
|
|
7
|
+
- guestyClientSecret
|
|
8
|
+
properties:
|
|
9
|
+
guestyClientId:
|
|
10
|
+
type: string
|
|
11
|
+
description: Guesty OAuth2 Client ID
|
|
12
|
+
guestyClientSecret:
|
|
13
|
+
type: string
|
|
14
|
+
description: Guesty OAuth2 Client Secret
|
|
15
|
+
commandFunction:
|
|
16
|
+
|-
|
|
17
|
+
(config) => ({ command: 'npx', args: ['-y', 'guesty-mcp-server'], env: { GUESTY_CLIENT_ID: config.guestyClientId, GUESTY_CLIENT_SECRET: config.guestyClientSecret } })
|