sitebay-mcp 0.1.1751196041__py3-none-any.whl → 0.1.1751285665__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/client.py CHANGED
@@ -233,11 +233,21 @@ class SiteBayClient:
233
233
  return await self._request("DELETE", endpoint, params=params)
234
234
 
235
235
  # Site Management Methods
236
- async def list_sites(self, team_id: Optional[str] = None) -> List[Dict[str, Any]]:
236
+ async def list_sites(self, team_id: Optional[str] = None) -> Union[List[Dict[str, Any]], str]:
237
237
  """List all sites for the user"""
238
238
  params = {"team_id": team_id} if team_id else None
239
239
  response = await self.get("/site", params=params)
240
- return response.get("results", [])
240
+
241
+ # Handle case where API returns error as string
242
+ if isinstance(response, str):
243
+ return response
244
+
245
+ # Handle normal dict response
246
+ if isinstance(response, dict):
247
+ return response.get("results", [])
248
+
249
+ # Handle unexpected response format
250
+ return f"Unexpected response format: {type(response).__name__}"
241
251
 
242
252
  async def get_site(self, fqdn: str) -> Dict[str, Any]:
243
253
  """Get details for a specific site"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sitebay-mcp
3
- Version: 0.1.1751196041
3
+ Version: 0.1.1751285665
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
@@ -1,14 +1,14 @@
1
1
  sitebay_mcp/__init__.py,sha256=RvWonHPlNJwFvYioSwHvLLRCuvmH0h6nmOR2rB95HKc,386
2
2
  sitebay_mcp/auth.py,sha256=idUbSdtIAMqrSLnzZ17VmhxLHox0SA81cb2ks2YrxUU,1739
3
- sitebay_mcp/client.py,sha256=95oR1EQ8h1F42qdDPcpYwjuVKKMY7yy7yqa3LxO_T0E,14623
3
+ sitebay_mcp/client.py,sha256=C0SSjOyfwf9s40HRNNVphQSaoPxnyA4Cydg6Oy-VyhM,14981
4
4
  sitebay_mcp/exceptions.py,sha256=3zt40zk8MD-k4-5NwxMzWcQDbexLcVOUsoNIREXwhWg,1157
5
5
  sitebay_mcp/resources.py,sha256=A9vbeFBFT2UoodJawRtzmqSBzRbx1ksGMl00vFnrMUc,5501
6
6
  sitebay_mcp/server.py,sha256=M3Z1oEmGOyIpy2wJgR9O_wYxZAMtEkt4CI8Qs4YiwIo,28321
7
7
  sitebay_mcp/tools/__init__.py,sha256=5QxQGl_HgkH-7uFqY3puZmTqeVQkE-yxym43EcRr6zc,108
8
8
  sitebay_mcp/tools/operations.py,sha256=VXwpt-p2MguW-sK1FHmQUMD2ldEi5T_p59pNMG-kuuQ,8803
9
9
  sitebay_mcp/tools/sites.py,sha256=rNeRwFg9FmE6RuZOZS7TRxILl-bcIJuW2nKUippuKjc,8889
10
- sitebay_mcp-0.1.1751196041.dist-info/METADATA,sha256=gW11_e6ZJcnsvL-wGGfrka0Jpb1Ca8bi0RkhR5mOS8A,8161
11
- sitebay_mcp-0.1.1751196041.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
- sitebay_mcp-0.1.1751196041.dist-info/entry_points.txt,sha256=kOW3HHmOw1mAqzbDliyWzaHwS-tAwISRFdQHBa9QvRc,56
13
- sitebay_mcp-0.1.1751196041.dist-info/licenses/LICENSE,sha256=PjkyMZfBImLXpO5eKb_sI__W1JMf1jL51n1O7H4a1I0,1062
14
- sitebay_mcp-0.1.1751196041.dist-info/RECORD,,
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,,