Sitebay MCP Server

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

Trust grade
B
88/100
Last scanned get badge →
Trust
B · 88/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 100 − adoption risk = 88/100

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:

PointsAdoption-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.

Findings 17

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

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

high Tool "sitebay_site_shell_command" exposes command/code executionMTC-CAP-001

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

high Tool "sitebay_browser_eval" exposes command/code executionMTC-CAP-001

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

high Dynamic code execution in server code (.smithery/shttp/module.js)MTC-SRC-001

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

medium Tool "sitebay_site_edit_file" can modify the filesystemMTC-CAP-002

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

medium Tool "sitebay_edit_file" can modify the filesystemMTC-CAP-002

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

medium Tool "sitebay_read_and_edit_file" can modify the filesystemMTC-CAP-002

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

medium Tool "sitebay_multi_edit_files" can modify the filesystemMTC-CAP-002

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

medium Tool "sitebay_unlink_git" can modify the filesystemMTC-CAP-002

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

low Mutating tool "sitebay_site_shell_command" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_site_edit_file" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_browser_eval" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_edit_file" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_read_and_edit_file" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_multi_edit_files" declares no destructiveHintMTC-CAP-005

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

low Mutating tool "sitebay_unlink_git" declares no destructiveHintMTC-CAP-005

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

low Shell/command execution in packaging/dev tooling (scripts/build-embeddings.ts)MTC-SRC-002

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

Tools 75

Each tool and what it can reach — statically extracted from the published source.

  • sitebay_backup_get_download_urlsingests untrusted input
  • sitebay_browser_evalruns code / shell
  • sitebay_edit_filewrites files
  • sitebay_multi_edit_fileswrites files
  • sitebay_read_and_edit_filewrites files
  • sitebay_read_filereads sensitive data
  • sitebay_site_edit_filewrites files
  • sitebay_site_shell_commandruns code / shell
  • sitebay_unlink_gitwrites files
  • sitebay_account_affiliatesno sensitive capability
Show 65 more tools ↓
  • sitebay_account_create_checkoutno sensitive capability
  • sitebay_add_custom_hostnameno sensitive capability
  • sitebay_backup_get_filesno sensitive capability
  • sitebay_backup_list_commitsno sensitive capability
  • sitebay_backup_preview_restoreno sensitive capability
  • sitebay_backup_restoreno sensitive capability
  • sitebay_browser_admin_cookieno sensitive capability
  • sitebay_browser_clickno sensitive capability
  • sitebay_browser_fillno sensitive capability
  • sitebay_browser_gotono sensitive capability
  • sitebay_browser_screenshotno sensitive capability
  • sitebay_browser_textno sensitive capability
  • sitebay_check_ns_statusno sensitive capability
  • sitebay_clear_cacheno sensitive capability
  • sitebay_create_checkpointno sensitive capability
  • sitebay_create_dns_recordno sensitive capability
  • sitebay_create_external_pathno sensitive capability
  • sitebay_create_siteno sensitive capability
  • sitebay_create_snapshot_jobno sensitive capability
  • sitebay_create_staging_siteno sensitive capability
  • sitebay_delete_checkpointno sensitive capability
  • sitebay_delete_dns_recordno sensitive capability
  • sitebay_delete_siteno sensitive capability
  • sitebay_delete_staging_siteno sensitive capability
  • sitebay_dolt_diffno sensitive capability
  • sitebay_dolt_diff_summaryno sensitive capability
  • sitebay_dolt_logno sensitive capability
  • sitebay_duplicate_themeno sensitive capability
  • sitebay_edit_assetno sensitive capability
  • sitebay_file_treeno sensitive capability
  • sitebay_get_checkpointno sensitive capability
  • sitebay_get_cloudflare_toolsno sensitive capability
  • sitebay_get_container_logsno sensitive capability
  • sitebay_get_dns_recordsno sensitive capability
  • sitebay_get_external_pathsno sensitive capability
  • sitebay_get_git_sync_reposno sensitive capability
  • sitebay_get_knowledgeno sensitive capability
  • sitebay_get_linked_git_reposno sensitive capability
  • sitebay_get_pit_restoreno sensitive capability
  • sitebay_get_pit_restoresno sensitive capability
  • sitebay_get_shopify_storeno sensitive capability
  • sitebay_get_siteno sensitive capability
  • sitebay_get_site_logsno sensitive capability
  • sitebay_get_snapshot_jobno sensitive capability
  • sitebay_get_staging_siteno sensitive capability
  • sitebay_list_checkpointsno sensitive capability
  • sitebay_list_custom_hostnamesno sensitive capability
  • sitebay_list_ready_made_sitesno sensitive capability
  • sitebay_list_shopify_storesno sensitive capability
  • sitebay_list_sitesno sensitive capability
  • sitebay_list_teamsno sensitive capability
  • sitebay_multi_edit_assetsno sensitive capability
  • sitebay_posthog_proxyno sensitive capability
  • sitebay_read_assetno sensitive capability
  • sitebay_remove_custom_hostnameno sensitive capability
  • sitebay_restore_checkpointno sensitive capability
  • sitebay_search_dolt_historyno sensitive capability
  • sitebay_shopify_proxyno sensitive capability
  • sitebay_toggle_waf_login_protectionno sensitive capability
  • sitebay_update_cf_settingsno sensitive capability
  • sitebay_update_shopify_storeno sensitive capability
  • sitebay_update_siteno sensitive capability
  • sitebay_wordpress_proxyno sensitive capability
  • sitebay_wp_create_pageno sensitive capability
  • sitebay_wp_update_settingsno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

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.

VersionScoreFindingsEngineScanned
v0.1.1774045660 latest B 88/100 17 1.13.0 2026-08-25

Embed this score

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.

MCP Trust Score: B · 88/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/sitebay-mcp/badge.svg)](https://mcptrustchecker.com/registry/sitebay-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/sitebay-mcp"><img src="https://mcptrustchecker.com/registry/sitebay-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/sitebay-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

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

Use the free API → How scoring works

More in Cloud & DevOps