sitebay-mcp
PyPI
v0.1.1774045660
Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.
SiteBay MCP Server - WordPress hosting management through Claude Code
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:
The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.
2. Client adoption risk — 100 − 12 = 88. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −10 | capability blast radius (critical) — client exposure if the model is manipulated |
| −2 | publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
This server (without client built-ins) exposes a complete data-exfiltration chain: sitebay_backup_get_download_urls → sitebay_read_file → sitebay_browser_eval. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.
Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.
Location: flow sitebay_backup_get_download_urls → sitebay_read_file → sitebay_browser_eval
Tool "sitebay_site_shell_command" appears to run shell commands or evaluate code (keyword "shell" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.
Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.
Location: tool sitebay_site_shell_command
Tool "sitebay_browser_eval" appears to run shell commands or evaluate code (keyword "eval" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.
Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.
Location: tool sitebay_browser_eval
In the server's implementation (`.smithery/shttp/module.js:5`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ode.process(l,e));let f=new Function(`${nn.default.self}`,`${nn.default.scope}`,l)(this,this.scope.get());if(this.scope.
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server .smithery/shttp/module.js
Tool "sitebay_site_edit_file" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool sitebay_site_edit_file
Tool "sitebay_edit_file" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool sitebay_edit_file
Tool "sitebay_read_and_edit_file" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool sitebay_read_and_edit_file
Tool "sitebay_multi_edit_files" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool sitebay_multi_edit_files
Tool "sitebay_unlink_git" can write, overwrite or delete files (keyword "unlink" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool sitebay_unlink_git
Tool "sitebay_site_shell_command" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_site_shell_command
Tool "sitebay_site_edit_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_site_edit_file
Tool "sitebay_browser_eval" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_browser_eval
Tool "sitebay_edit_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_edit_file
Tool "sitebay_read_and_edit_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_read_and_edit_file
Tool "sitebay_multi_edit_files" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_multi_edit_files
Tool "sitebay_unlink_git" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool sitebay_unlink_git
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/build-embeddings.ts:10`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: port { execSync } from "child_process"; const BIBLE_INDEX_URL = "https://raw.githubusercontent.com/sitebay/docs/main/
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server scripts/build-embeddings.ts
Each tool and what it can reach — statically extracted from the published source.
sitebay_backup_get_download_urlsingests untrusted inputsitebay_browser_evalruns code / shellsitebay_edit_filewrites filessitebay_multi_edit_fileswrites filessitebay_read_and_edit_filewrites filessitebay_read_filereads sensitive datasitebay_site_edit_filewrites filessitebay_site_shell_commandruns code / shellsitebay_unlink_gitwrites filessitebay_account_affiliatesno sensitive capabilitysitebay_account_create_checkoutno sensitive capabilitysitebay_add_custom_hostnameno sensitive capabilitysitebay_backup_get_filesno sensitive capabilitysitebay_backup_list_commitsno sensitive capabilitysitebay_backup_preview_restoreno sensitive capabilitysitebay_backup_restoreno sensitive capabilitysitebay_browser_admin_cookieno sensitive capabilitysitebay_browser_clickno sensitive capabilitysitebay_browser_fillno sensitive capabilitysitebay_browser_gotono sensitive capabilitysitebay_browser_screenshotno sensitive capabilitysitebay_browser_textno sensitive capabilitysitebay_check_ns_statusno sensitive capabilitysitebay_clear_cacheno sensitive capabilitysitebay_create_checkpointno sensitive capabilitysitebay_create_dns_recordno sensitive capabilitysitebay_create_external_pathno sensitive capabilitysitebay_create_siteno sensitive capabilitysitebay_create_snapshot_jobno sensitive capabilitysitebay_create_staging_siteno sensitive capabilitysitebay_delete_checkpointno sensitive capabilitysitebay_delete_dns_recordno sensitive capabilitysitebay_delete_siteno sensitive capabilitysitebay_delete_staging_siteno sensitive capabilitysitebay_dolt_diffno sensitive capabilitysitebay_dolt_diff_summaryno sensitive capabilitysitebay_dolt_logno sensitive capabilitysitebay_duplicate_themeno sensitive capabilitysitebay_edit_assetno sensitive capabilitysitebay_file_treeno sensitive capabilitysitebay_get_checkpointno sensitive capabilitysitebay_get_cloudflare_toolsno sensitive capabilitysitebay_get_container_logsno sensitive capabilitysitebay_get_dns_recordsno sensitive capabilitysitebay_get_external_pathsno sensitive capabilitysitebay_get_git_sync_reposno sensitive capabilitysitebay_get_knowledgeno sensitive capabilitysitebay_get_linked_git_reposno sensitive capabilitysitebay_get_pit_restoreno sensitive capabilitysitebay_get_pit_restoresno sensitive capabilitysitebay_get_shopify_storeno sensitive capabilitysitebay_get_siteno sensitive capabilitysitebay_get_site_logsno sensitive capabilitysitebay_get_snapshot_jobno sensitive capabilitysitebay_get_staging_siteno sensitive capabilitysitebay_list_checkpointsno sensitive capabilitysitebay_list_custom_hostnamesno sensitive capabilitysitebay_list_ready_made_sitesno sensitive capabilitysitebay_list_shopify_storesno sensitive capabilitysitebay_list_sitesno sensitive capabilitysitebay_list_teamsno sensitive capabilitysitebay_multi_edit_assetsno sensitive capabilitysitebay_posthog_proxyno sensitive capabilitysitebay_read_assetno sensitive capabilitysitebay_remove_custom_hostnameno sensitive capabilitysitebay_restore_checkpointno sensitive capabilitysitebay_search_dolt_historyno sensitive capabilitysitebay_shopify_proxyno sensitive capabilitysitebay_toggle_waf_login_protectionno sensitive capabilitysitebay_update_cf_settingsno sensitive capabilitysitebay_update_shopify_storeno sensitive capabilitysitebay_update_siteno sensitive capabilitysitebay_wordpress_proxyno sensitive capabilitysitebay_wp_create_pageno sensitive capabilitysitebay_wp_update_settingsno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v0.1.1774045660 latest |
B 88/100 | 17 | 1.13.0 | 2026-08-25 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan sitebay-mcp --online --registry pypi
Operator control CLI for AdGuard Home with an MCP adapter
interacting with Aliyun (Alibaba Cloud) services through This MCP server provides tools.
MCP server for the Aspro.Cloud REST API
MCP server for Atlassian Confluence and Jira Cloud APIs
AuroraCloud-first MCP server that exposes AuroraDocs workspace data to Claude Desktop and other AI agents
The official AWS Knowledge Base retrieval server using Bedrock Agent Runtime.