sitebay-mcp 0.1.1751285665__py3-none-any.whl → 0.1.1757492007__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sitebay-mcp
3
- Version: 0.1.1751285665
3
+ Version: 0.1.1757492007
4
4
  Summary: SiteBay MCP Server - WordPress hosting management through Claude Code
5
5
  Author-email: SiteBay <support@sitebay.org>
6
6
  License-File: LICENSE
@@ -20,32 +20,30 @@ Description-Content-Type: text/markdown
20
20
  # SiteBay MCP Server
21
21
  [![smithery badge](https://smithery.ai/badge/@sitebay/sitebay-mcp)](https://smithery.ai/server/@sitebay/sitebay-mcp)
22
22
 
23
- A Model Context Protocol (MCP) server that provides Claude Code users with direct access to the SiteBay WordPress hosting platform. Manage your hosted WordPress sites, execute server commands, handle staging environments, and more through natural language interactions with the SiteBay cloud infrastructure.
23
+ A Model Context Protocol (MCP) server that provides Claude Code users with direct access to the SiteBay WordPress hosting platform. Manage your hosted WordPress sites, execute server commands, and more through natural language interactions with the SiteBay cloud infrastructure.
24
24
 
25
25
  ## Features
26
26
 
27
27
  ### 🌐 Site Management
28
28
  - List all your hosted WordPress sites
29
29
  - Get detailed site information (status, region, PHP version, etc.)
30
- - Create new WordPress sites using SiteBay's templates
30
+ - Create new WordPress sites using SiteBay's ready-made sites
31
31
  - Update site configurations (PHP version, admin credentials, etc.)
32
- - Delete sites with safety confirmations
32
+ - Delete sites
33
33
 
34
34
  ### ⚡ Site Operations
35
35
  - Execute shell commands and WP-CLI commands on SiteBay servers
36
36
  - Edit files in wp-content directory on your hosted sites
37
37
  - View site events and deployment logs from SiteBay infrastructure
38
- - Manage external path configurations for URL proxying through SiteBay
38
+
39
39
 
40
40
  ### 🛠 Advanced Features
41
- - Staging site management on SiteBay infrastructure (coming soon)
42
41
  - Point-in-time backup restores from SiteBay's backup system (coming soon)
43
42
  - Team management for collaborative hosting (coming soon)
44
43
  - WordPress/Shopify/PostHog API proxy services through SiteBay (coming soon)
45
44
 
46
45
  ### 🗺 Helper Tools
47
- - List available SiteBay hosting regions
48
- - Browse SiteBay's WordPress templates
46
+ - Browse SiteBay's ready-made sites
49
47
  - Account and billing information (coming soon)
50
48
 
51
49
  ## Installation
@@ -67,6 +65,40 @@ uvx sitebay-mcp
67
65
  # Or install for repeated use
68
66
  uv tool install sitebay-mcp
69
67
  sitebay-mcp
68
+
69
+ ## HTTP Transport (Recommended for hosted deployments)
70
+
71
+ This server now supports Streamable HTTP transport in addition to STDIO. Use HTTP for hosted or remote deployments and to comply with Smithery’s hosted requirements.
72
+
73
+ ### Run over HTTP
74
+
75
+ ```bash
76
+ # Defaults to 127.0.0.1:7823
77
+ uvx sitebay-mcp --http
78
+
79
+ # Or specify host/port
80
+ uvx sitebay-mcp --http --host 0.0.0.0 --port 7823
81
+
82
+ # Environment variables also supported
83
+ MCP_TRANSPORT=http MCP_HTTP_HOST=0.0.0.0 MCP_HTTP_PORT=7823 uvx sitebay-mcp
84
+ ```
85
+
86
+ ### Configure Claude Desktop for HTTP
87
+
88
+ Add a server URL entry instead of a command:
89
+
90
+ ```json
91
+ {
92
+ "mcpServers": {
93
+ "sitebay": {
94
+ "url": "http://127.0.0.1:7823",
95
+ "env": {
96
+ "SITEBAY_API_TOKEN": "your_api_token_here"
97
+ }
98
+ }
99
+ }
100
+ }
101
+ ```
70
102
  ```
71
103
 
72
104
  ### Using pip
@@ -94,7 +126,7 @@ pip install -e .
94
126
 
95
127
  Add the following to your Claude Desktop configuration file:
96
128
 
97
- #### For uvx installation:
129
+ #### For uvx installation (STDIO mode):
98
130
  ```json
99
131
  {
100
132
  "mcpServers": {
@@ -109,7 +141,7 @@ Add the following to your Claude Desktop configuration file:
109
141
  }
110
142
  ```
111
143
 
112
- #### For pip installation:
144
+ #### For pip installation (STDIO mode):
113
145
  ```json
114
146
  {
115
147
  "mcpServers": {
@@ -124,6 +156,20 @@ Add the following to your Claude Desktop configuration file:
124
156
  }
125
157
  ```
126
158
 
159
+ #### For HTTP mode (any installation):
160
+ ```json
161
+ {
162
+ "mcpServers": {
163
+ "sitebay": {
164
+ "url": "http://127.0.0.1:7823",
165
+ "env": {
166
+ "SITEBAY_API_TOKEN": "your_api_token_here"
167
+ }
168
+ }
169
+ }
170
+ }
171
+ ```
172
+
127
173
  ### 3. Claude Desktop Configuration File Locations
128
174
 
129
175
  - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
@@ -135,7 +181,7 @@ Add the following to your Claude Desktop configuration file:
135
181
  ### Creating a New WordPress Site
136
182
 
137
183
  ```
138
- Claude: Create a new WordPress site called "myblog.example.com" with the title "My Amazing Blog", admin username "admin", password "SecurePass123!", and email "me@example.com"
184
+ Claude: Create a new WordPress site on team 00000000-0000-4000-a000-000000000000 with domain "www.example.org". Blog name "Example", admin Jane Smith (email admin@example.org), username "taylor89", password "AStrongPassword". Use ready-made site name "blog-basic" and set Git URL to https://github.com/acme/wp-site
139
185
  ```
140
186
 
141
187
  ### Managing Existing Sites
@@ -145,7 +191,9 @@ Claude: List all my WordPress sites and show their current status
145
191
 
146
192
  Claude: Get detailed information about myblog.example.com
147
193
 
148
- Claude: Update the PHP version for myblog.example.com to 8.2
194
+ Claude: Enable Cloudflare dev mode for myblog.example.com
195
+ Claude: Set the Git URL for myblog.example.com to https://github.com/acme/wp-site
196
+ Claude: Turn on HTTP auth for myblog.example.com
149
197
  ```
150
198
 
151
199
  ### Executing Commands
@@ -162,24 +210,14 @@ Claude: Check the disk usage on myblog.example.com with "df -h" on the SiteBay s
162
210
 
163
211
  ```
164
212
  Claude: Edit the style.css file in my active theme on myblog.example.com hosted on SiteBay
165
-
166
- Claude: Show me recent events and deployment logs for myblog.example.com from SiteBay
167
213
  ```
168
214
 
169
- ### External Paths (URL Proxying)
170
-
171
- ```
172
- Claude: Create an external path "/api" on myblog.example.com that proxies to "https://my-external-api.com" through SiteBay
173
-
174
- Claude: List all external path configurations for myblog.example.com on SiteBay
175
- ```
215
+
176
216
 
177
217
  ### Getting Information
178
218
 
179
219
  ```
180
- Claude: Show me all available SiteBay hosting regions
181
-
182
- Claude: List all the WordPress templates available on SiteBay for new sites
220
+ Claude: List all the ready-made sites available on SiteBay for new sites
183
221
  ```
184
222
 
185
223
  ## Available Tools
@@ -189,18 +227,16 @@ Claude: List all the WordPress templates available on SiteBay for new sites
189
227
  - `sitebay_get_site` - Get detailed information about a hosted site
190
228
  - `sitebay_create_site` - Create a new WordPress site on SiteBay infrastructure
191
229
  - `sitebay_update_site` - Update site configuration on SiteBay servers
192
- - `sitebay_delete_site` - Delete a hosted site (with confirmation)
230
+ - `sitebay_delete_site` - Delete a hosted site
193
231
 
194
232
  ### Site Operations
195
233
  - `sitebay_site_shell_command` - Execute shell/WP-CLI commands on SiteBay servers
196
234
  - `sitebay_site_edit_file` - Edit files in wp-content on SiteBay-hosted sites
197
- - `sitebay_site_get_events` - View site events and deployment logs from SiteBay
198
- - `sitebay_site_external_path_list` - List external path configs on SiteBay
199
- - `sitebay_site_external_path_create` - Create external path through SiteBay proxy
235
+
236
+
200
237
 
201
238
  ### Helper Tools
202
- - `sitebay_list_regions` - List available SiteBay hosting regions
203
- - `sitebay_list_templates` - List WordPress templates available on SiteBay
239
+ - `sitebay_list_ready_made_sites` - List ready-made sites available on SiteBay
204
240
 
205
241
  ## Security Notes
206
242
 
@@ -268,4 +304,4 @@ This project is licensed under the MIT License - see the LICENSE file for detail
268
304
  - Shell command execution
269
305
  - File editing capabilities
270
306
  - External path management
271
- - Region and template listing
307
+ - Ready-made site catalog listing
@@ -0,0 +1,14 @@
1
+ sitebay_mcp/__init__.py,sha256=jzUYYqpNW6OUhM-S7CzoX-Y6KqUoBAaZBkgKWvhm8Cc,371
2
+ sitebay_mcp/auth.py,sha256=idUbSdtIAMqrSLnzZ17VmhxLHox0SA81cb2ks2YrxUU,1739
3
+ sitebay_mcp/client.py,sha256=qf7fRVDrDfKvdxz0NDLxTsqQ1wy68ejTKsl7O3Mg-DU,13726
4
+ sitebay_mcp/exceptions.py,sha256=3zt40zk8MD-k4-5NwxMzWcQDbexLcVOUsoNIREXwhWg,1157
5
+ sitebay_mcp/resources.py,sha256=XHfSI7wWU28NU6ak8cKilYWFw_-LSvNOqawt8Mr0Olw,4167
6
+ sitebay_mcp/server.py,sha256=HicIEkrnX3ySmNvN4VRmjb4c5UdN2k9voCDKVGVqTa0,26256
7
+ sitebay_mcp/tools/__init__.py,sha256=5QxQGl_HgkH-7uFqY3puZmTqeVQkE-yxym43EcRr6zc,108
8
+ sitebay_mcp/tools/operations.py,sha256=RUvOEhrXIFTmyUrw7NMBVSJctie9l18Md7O2VSh0dBg,5946
9
+ sitebay_mcp/tools/sites.py,sha256=9vvTywhR7vGFQa0eNMJng9CyVbXKocdZ_GzvWFoNwmk,9368
10
+ sitebay_mcp-0.1.1757492007.dist-info/METADATA,sha256=m1V1EvMLput9dXlyzI0PIEkCHGGu3NVf1csx6PAuUls,8495
11
+ sitebay_mcp-0.1.1757492007.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
+ sitebay_mcp-0.1.1757492007.dist-info/entry_points.txt,sha256=kOW3HHmOw1mAqzbDliyWzaHwS-tAwISRFdQHBa9QvRc,56
13
+ sitebay_mcp-0.1.1757492007.dist-info/licenses/LICENSE,sha256=PjkyMZfBImLXpO5eKb_sI__W1JMf1jL51n1O7H4a1I0,1062
14
+ sitebay_mcp-0.1.1757492007.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- sitebay_mcp/__init__.py,sha256=RvWonHPlNJwFvYioSwHvLLRCuvmH0h6nmOR2rB95HKc,386
2
- sitebay_mcp/auth.py,sha256=idUbSdtIAMqrSLnzZ17VmhxLHox0SA81cb2ks2YrxUU,1739
3
- sitebay_mcp/client.py,sha256=C0SSjOyfwf9s40HRNNVphQSaoPxnyA4Cydg6Oy-VyhM,14981
4
- sitebay_mcp/exceptions.py,sha256=3zt40zk8MD-k4-5NwxMzWcQDbexLcVOUsoNIREXwhWg,1157
5
- sitebay_mcp/resources.py,sha256=A9vbeFBFT2UoodJawRtzmqSBzRbx1ksGMl00vFnrMUc,5501
6
- sitebay_mcp/server.py,sha256=M3Z1oEmGOyIpy2wJgR9O_wYxZAMtEkt4CI8Qs4YiwIo,28321
7
- sitebay_mcp/tools/__init__.py,sha256=5QxQGl_HgkH-7uFqY3puZmTqeVQkE-yxym43EcRr6zc,108
8
- sitebay_mcp/tools/operations.py,sha256=VXwpt-p2MguW-sK1FHmQUMD2ldEi5T_p59pNMG-kuuQ,8803
9
- sitebay_mcp/tools/sites.py,sha256=rNeRwFg9FmE6RuZOZS7TRxILl-bcIJuW2nKUippuKjc,8889
10
- sitebay_mcp-0.1.1751285665.dist-info/METADATA,sha256=rrS7nVFbW2MdZm8ElrE4HjApq7sVY1NLPEXplSkCBvQ,8161
11
- sitebay_mcp-0.1.1751285665.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
- sitebay_mcp-0.1.1751285665.dist-info/entry_points.txt,sha256=kOW3HHmOw1mAqzbDliyWzaHwS-tAwISRFdQHBa9QvRc,56
13
- sitebay_mcp-0.1.1751285665.dist-info/licenses/LICENSE,sha256=PjkyMZfBImLXpO5eKb_sI__W1JMf1jL51n1O7H4a1I0,1062
14
- sitebay_mcp-0.1.1751285665.dist-info/RECORD,,