sitebay-mcp 0.1.1751180311__py3-none-any.whl → 0.1.1751189381__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.
- sitebay_mcp/server.py +3 -0
- sitebay_mcp/tools/sites.py +18 -3
- {sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/METADATA +1 -1
- {sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/RECORD +7 -7
- {sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/WHEEL +0 -0
- {sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/entry_points.txt +0 -0
- {sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/licenses/LICENSE +0 -0
sitebay_mcp/server.py
CHANGED
@@ -69,6 +69,9 @@ async def sitebay_list_sites(ctx: Context, team_id: Optional[str] = None) -> str
|
|
69
69
|
except SiteBayError as e:
|
70
70
|
await ctx.error(f"SiteBay API error: {str(e)}")
|
71
71
|
return f"❌ SiteBay Error: {str(e)}"
|
72
|
+
except ValueError as e:
|
73
|
+
await ctx.error(f"Validation error listing sites: {str(e)}")
|
74
|
+
return f"❌ Validation Error: {str(e)}"
|
72
75
|
except Exception as e:
|
73
76
|
await ctx.error(f"Unexpected error listing sites: {str(e)}")
|
74
77
|
return f"❌ Unexpected error: {str(e)}"
|
sitebay_mcp/tools/sites.py
CHANGED
@@ -3,8 +3,8 @@ Site management tools for SiteBay MCP Server
|
|
3
3
|
"""
|
4
4
|
|
5
5
|
from typing import Optional, Dict, Any, List
|
6
|
-
from
|
7
|
-
from
|
6
|
+
from sitebay_mcp.client import SiteBayClient
|
7
|
+
from sitebay_mcp.exceptions import SiteBayError
|
8
8
|
|
9
9
|
|
10
10
|
async def sitebay_list_sites(
|
@@ -21,7 +21,17 @@ async def sitebay_list_sites(
|
|
21
21
|
Formatted string with site details
|
22
22
|
"""
|
23
23
|
try:
|
24
|
+
if team_id is not None and not isinstance(team_id, str):
|
25
|
+
msg = "team_id must be a string if provided"
|
26
|
+
raise ValueError(msg)
|
27
|
+
|
24
28
|
sites = await client.list_sites(team_id=team_id)
|
29
|
+
|
30
|
+
if isinstance(sites, str):
|
31
|
+
return f"Error listing sites: {sites}"
|
32
|
+
|
33
|
+
if not isinstance(sites, list) or not all(isinstance(s, dict) for s in sites):
|
34
|
+
return f"Unexpected response format when listing sites: {sites}"
|
25
35
|
|
26
36
|
if not sites:
|
27
37
|
return "No sites found for your account."
|
@@ -43,6 +53,8 @@ async def sitebay_list_sites(
|
|
43
53
|
|
44
54
|
except SiteBayError as e:
|
45
55
|
return f"Error listing sites: {str(e)}"
|
56
|
+
except ValueError as e:
|
57
|
+
return f"Error listing sites: {str(e)}"
|
46
58
|
|
47
59
|
|
48
60
|
async def sitebay_get_site(
|
@@ -242,7 +254,10 @@ async def sitebay_delete_site(
|
|
242
254
|
try:
|
243
255
|
await client.delete_site(fqdn)
|
244
256
|
|
245
|
-
return
|
257
|
+
return (
|
258
|
+
"✅ **Site Deleted Successfully**\n\n"
|
259
|
+
f"The site {fqdn} has been permanently deleted."
|
260
|
+
)
|
246
261
|
|
247
262
|
except SiteBayError as e:
|
248
263
|
return f"Error deleting site: {str(e)}"
|
@@ -3,12 +3,12 @@ sitebay_mcp/auth.py,sha256=idUbSdtIAMqrSLnzZ17VmhxLHox0SA81cb2ks2YrxUU,1739
|
|
3
3
|
sitebay_mcp/client.py,sha256=MzEje2tpK0SIlf_znYtaQ2R6V-kdgoEuaO3KIExJFVU,14597
|
4
4
|
sitebay_mcp/exceptions.py,sha256=3zt40zk8MD-k4-5NwxMzWcQDbexLcVOUsoNIREXwhWg,1157
|
5
5
|
sitebay_mcp/resources.py,sha256=wWJoFlR9rRBxx64t8U_JXSWZ8JC7Z9O3wiZvdMDnnOA,5485
|
6
|
-
sitebay_mcp/server.py,sha256=
|
6
|
+
sitebay_mcp/server.py,sha256=J6QlvxNYOsgGoROBBCZP-dg8Yp8JBfQJ_BYqVc9vCi8,28268
|
7
7
|
sitebay_mcp/tools/__init__.py,sha256=5QxQGl_HgkH-7uFqY3puZmTqeVQkE-yxym43EcRr6zc,108
|
8
8
|
sitebay_mcp/tools/operations.py,sha256=Nus863sqREI_V9OPHOuiO-FOMz6u6MtLcr04LNVcFdk,8797
|
9
|
-
sitebay_mcp/tools/sites.py,sha256=
|
10
|
-
sitebay_mcp-0.1.
|
11
|
-
sitebay_mcp-0.1.
|
12
|
-
sitebay_mcp-0.1.
|
13
|
-
sitebay_mcp-0.1.
|
14
|
-
sitebay_mcp-0.1.
|
9
|
+
sitebay_mcp/tools/sites.py,sha256=rNeRwFg9FmE6RuZOZS7TRxILl-bcIJuW2nKUippuKjc,8889
|
10
|
+
sitebay_mcp-0.1.1751189381.dist-info/METADATA,sha256=W_bjME2LL3MNa27ShYSv1gsOKKEta7oGJRJtA6J-KDE,8161
|
11
|
+
sitebay_mcp-0.1.1751189381.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
12
|
+
sitebay_mcp-0.1.1751189381.dist-info/entry_points.txt,sha256=kOW3HHmOw1mAqzbDliyWzaHwS-tAwISRFdQHBa9QvRc,56
|
13
|
+
sitebay_mcp-0.1.1751189381.dist-info/licenses/LICENSE,sha256=PjkyMZfBImLXpO5eKb_sI__W1JMf1jL51n1O7H4a1I0,1062
|
14
|
+
sitebay_mcp-0.1.1751189381.dist-info/RECORD,,
|
File without changes
|
{sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/entry_points.txt
RENAMED
File without changes
|
{sitebay_mcp-0.1.1751180311.dist-info → sitebay_mcp-0.1.1751189381.dist-info}/licenses/LICENSE
RENAMED
File without changes
|