pb-hypernode-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pb-hypernode-mcpSpin up a Brancher preview for myapp with customer data sanitized"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pb-hypernode-mcp
Client-side Claude Code plugin for Hypernode Brancher — spin up disposable, prod-clone preview environments, drive AI-assisted changes over SSH, view via your existing browser MCP.
Why
Brancher gives you a mutable, temporary copy of your production Hypernode (≤24h-old data, full toolchain, real infra — not a Docker approximation). The catch: it clones production wholesale, meaning live customer PII and real payment/API credentials come along by default, and the node gets a public URL. This plugin closes that gap — every node it creates is anonymized and sandboxed automatically, before it's ever reported ready, so "let the client's AI poke at a real prod clone" doesn't also mean "expose real customer data on the internet."
Related MCP server: DDEV MCP
Setup
Three steps: install the plugin, tell it your Hypernode token, restart Claude Code.
1. Install the plugin
Type this directly into Claude Code (no terminal needed):
/plugin marketplace add ProxiBlue/pb-hypernode-mcp
/plugin install pb-hypernode-mcp@pb-hypernode-mcpClaude Code fetches everything straight from GitHub — no downloading, no separate server to run, nothing to clone by hand.
(If you'd rather run it from a terminal instead, the same commands work as claude plugin marketplace add ... / claude plugin install ....)
2. Add your Hypernode API token
This plugin needs your Hypernode API token to talk to your Hypernode account on your behalf. It never gets stored anywhere by the plugin — you set it as an environment variable, the same way you'd set any password-like value.
Find your token in your Hypernode's Control Panel, then in your terminal (before opening Claude Code):
export HYPERNODE_API_TOKEN="your-token-here"Optional but recommended — restrict which Hypernode apps this plugin is allowed to touch, so a typo can never hit the wrong site:
export HYPERNODE_APP_ALLOWLIST="myapp"(Comma-separate multiple app names, e.g. "myapp,myapp2", if you manage more than one.)
Tip: add both lines to your shell's startup file (~/.zshrc or ~/.bashrc) so you don't have to re-type them every time.
3. Restart Claude Code
Close and reopen Claude Code so it picks up the token and connects to the plugin. You're ready to go.
Quick start
Just ask, in plain English:
"Spin up a Brancher preview for myapp so I can show the client the new category page layout."
Claude creates the node, waits for it to come online, sanitizes it (see Safety guardrails), and reports back:
node_name: myapp-eph482913
access_url: https://myapp-eph482913.hypernode.io/
minutes_remaining: 387From there, ask it to make a change and show you the result, or just say "clean up any leftover preview nodes" when you're done — Brancher bills by the minute whether or not anyone's looking at it.
What's in the plugin
skills/
├── brancher-spinup/ create a sanitized preview node, report access details
├── brancher-preview/ full loop: spin up -> change -> build -> screenshot
└── brancher-cleanup/ list/flag/delete leftover nodes
src/pb_hypernode_mcp/ the MCP server (6 tools) — see MCP tools below
tests/ automated test suiteRequirements
A Hypernode account on a Falcons plan, with an API token from the Control Panel (Brancher is a Falcons-only feature).
The SSH key you already use to reach your Hypernode — nothing extra to set up, Brancher preview nodes inherit access automatically.
Python 3.11+ and
uvinstalled on the machine running Claude Code (Claude Code plugins are just code — this is the runtime they need).
MCP tools
All 6 tools are registered on the pb-hypernode-mcp server (src/pb_hypernode_mcp/server.py). brancher_exec and brancher_put shell out to the system ssh/rsync binaries using your already-configured local SSH agent/key — this plugin never holds or stores key material itself.
Tool | Purpose | Key arguments |
| The sole node-creation tool: enforces a mandatory label, the app allowlist, and Falcons-plan eligibility, then wraps create -> wait-until-SSH-reachable -> run mandatory sanitization -> report ready as one non-bypassable call. There is no separate "raw create" tool — it is structurally impossible to create a Brancher node through this plugin without sanitization running first. Never returns an |
|
| List active Brancher nodes for |
|
| Delete a Brancher node. Gated behind a |
|
| Return SSH connection details ( |
|
| Run a shell command on a Brancher node over SSH (shells out to the system |
|
| Sync a local file/directory to a Brancher node via |
|
Skills
brancher-spinup— spin up a disposable Brancher preview node cloned from production, with mandatory automatic sanitization, and report its access URL. Use when a client asks to preview a change on a real prod-clone environment before it ships. Wraps the singlebrancher_createtool call — never reproduces the create/wait/sanitize sequence by hand.brancher-preview— the full loop: spin up a node (via thebrancher-spinupskill), apply a code change (push a local diff withbrancher_put, or edit in place withbrancher_exec), run only the Magento build commands the change actually needs (decide_build_commands()insrc/pb_hypernode_mcp/preview_logic.py), view the result through whatever browser MCP tool is already in the session, then explicitly remind the user the node is still billing Brancher minutes. Use when a client wants an end-to-end look at a change on a disposable environment. Never deletes the node itself.brancher-cleanup— list active nodes withbrancher_list, flag any at or past an age threshold (minutes >= threshold_minutes, default 240 minutes / 4 hours, viaflag_stale_nodes()insrc/pb_hypernode_mcp/cleanup_logic.py), and delete flagged nodes (single or bulk) only after explicit user confirmation. Use when a client wants to check for or remove leftover Brancher nodes to stop minute accrual. Brancher bills wall-clock minutes from creation regardless of whether anyone is actively using the node.
Safety guardrails
Mandatory sanitization — cannot be disabled. Every
brancher_createcall runs the full sanitization sequence (src/pb_hypernode_mcp/sanitization/) against the node before it is ever reported"ready"or returns anaccess_url. There is no flag, config option, or bypass path —brancher_createis the ONLY node-creation MCP tool this plugin registers (there is no separate, unsanitized create tool), andspinup_sanitized_brancher_node()insrc/pb_hypernode_mcp/tools/brancher_spinup_flow.py(the function behind it) structurally cannot return an access URL without every sanitization command having exited 0 first. If a sanitization command fails partway through, the tool raisesSanitizationFailedErrorand deliberately withholds the access URL — the exception does not even carry it, so a catching caller has no way to accidentally surface it.The sequence (config-driven, Magento-shaped default in
sanitization/config.py::DEFAULT_MAGENTO_SANITIZATION_CONFIG):PII anonymization —
UPDATEstatements (vian98-magerun2 db:query) againstcustomer_entity,customer_address_entity,sales_order,sales_order_address(names/emails/phones/street replaced with anonymized placeholders), and stored card data (quote_payment,sales_order_payment:cc_number_enc,cc_cid_enc,cc_owner,additional_datanulled).Admin credential reset —
admin_userusername/email reset to placeholder values and password overwritten with a hash that is deliberately invalid for any real password (locks form-based login until an operator sets a real one viabin/magento admin:user:create).Payment gateway sandbox-forcing —
bin/magento config:setforces e.g.payment/braintree/environment=sandbox,paypal/general/sandbox_flag=1.Third-party API key stubbing —
bin/magento config:setreplaces live keys (e.g. ShipperHQ, AvaTax) with dummy sandbox values so no preview node can make a real charge or a real third-party API call under production credentials.
A real client app's exact table shape and installed integrations should override/extend
SanitizationConfig, not rely on the shipped default in production — it exists as a safe-by-default starting point, not a promise it matches every schema.App allowlist (
HYPERNODE_APP_ALLOWLIST) — when set,brancher_create,brancher_list, andbrancher_deleterefuse anyappnamenot on the list.Falcons-plan eligibility check —
brancher_createrejects apps not on a Brancher-eligible plan before creating anything.-eph-only guard —brancher_execandbrancher_putvalidatenode_nameagainst the<appname>-eph<id>pattern (tools/_guards.py::validate_eph_node_name,.fullmatch()— no partial-match or trailing-character gaps) before opening any SSH connection or subprocess. It is structurally impossible to point either tool at a production hostname.Confirm-before-delete —
brancher_deletenever deletes on the first call. It requires an explicitconfirm=Truere-call after showing the target node's details; a threshold being configured or a node being flagged as stale is never itself confirmation.Mandatory label —
brancher_createrejects calls with nolabels, so every node is traceable to a reason/ticket.Token handling —
HYPERNODE_API_TOKENis read from the environment only and is never written to disk or plugin config by this plugin.brancher_putargument hardening —remote_path/local_pathare shell-quoted and rsync runs with--protect-args, so the remote host's shell never re-parses a path argument, closing off metacharacter injection via a crafted path.
This design was checked by a 3-specialist security review before release (static analysis, adversarial testing, defensive audit). It caught a real critical gap in an earlier draft — the sanitized flow had been built as a second tool alongside a still-exposed raw, unsanitized create path — which is why "one creation tool, no exceptions" is called out so insistently above. Found a security issue? Open an issue rather than a PR with the exploit details.
Limitations (v1)
Magento/Mage-OS only. The sanitization layer's default config (
DEFAULT_MAGENTO_SANITIZATION_CONFIG) and thebrancher-previewskill's build-command decision logic (decide_build_commands()) are both Magento-shaped. This is not a generic multi-platform tool — WooCommerce, Shopware, Laravel, and other Hypernode-hosted platforms are out of scope for v1. A non-Magento app would need a hand-writtenSanitizationConfigat minimum, and the preview skill's build sequence would not apply.No MCP-managed SSH keys.
brancher_exec/brancher_putshell out to the systemssh/rsyncbinaries and rely entirely on your own local SSH agent/key already having access to Brancher nodes (which inherit access automatically via Brancher's full-filesystem clone from production). This plugin never provisions, stores, or transmits key material.stdio transport only. No remote/HTTP MCP transport in v1 — this is a local Claude Code plugin, run per-developer against their own
HYPERNODE_API_TOKEN. There is no hosted/managed version of this MCP. Token and SSH access are both entirely client-owned.REST API only. No Hypernode Deploy (
deploy.php) integration in v1.Wall-clock, not idle-aware, minute accounting.
brancher-cleanup's staleness check usesminutesas reported by the Hypernode API (uptime since creation) — it cannot tell an idle node from an actively used one.Unverified API response shapes.
brancher_list's expected response shape ({"nodes": [{"name", "host", "minutes"}, ...]}) andbrancher_create's plan/minutes field names (plan_type,brancher_minutes_remaining) are documented assumptions, not yet confirmed against the live Hypernode API contract — see the module docstrings insrc/pb_hypernode_mcp/tools/brancher_list.pyandsrc/pb_hypernode_mcp/tools/brancher_create.pyif API responses don't match at runtime. Run a real create ->brancher_exec whoamismoke test against a Falcons-plan account before pointing this at a client.Playwright test offloading not yet built. Running the functional test suite against a Brancher node instead of local/CI is tracked separately — see ProxiBlue/pb-hypernode-mcp#1 or the originating design ticket.
Development
git clone https://github.com/ProxiBlue/pb-hypernode-mcp
cd pb-hypernode-mcp
uv sync --extra dev
uv run pytest -v # 84 tests, mocked HTTP/SSH — no real Hypernode account touched
uv run ruff check src tests # lint
uv run ruff format --check src tests # format check
uv run pyright src tests # type checkNo integration tests run automatically against a real Hypernode account. If you're changing tools/brancher_exec.py or the reachability-polling logic in tools/brancher_spinup_flow.py, do a manual smoke test against a real Falcons-plan node before merging — mocks can't catch a wrong SSH-user assumption or a shape mismatch in the real API response.
To install your own clone for local development instead of the published version, point Claude Code at the folder directly:
claude plugin marketplace add pb-hypernode-mcp /path/to/your/clone
claude plugin install pb-hypernode-mcp@pb-hypernode-mcpAfter editing skills or server code, run claude plugin update pb-hypernode-mcp@pb-hypernode-mcp to pick up the change without re-adding the marketplace.
If the plugin doesn't show up after installing, check: claude plugin list shows pb-hypernode-mcp as enabled; a fresh Claude Code session lists the brancher_* tools and the three brancher-* skills; HYPERNODE_API_TOKEN is set in the same shell you launched Claude Code from.
License
Apache-2.0. See LICENSE and NOTICE for third-party dependency/service attribution (Hypernode Brancher API, system ssh/rsync, MCP Python SDK).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -license-quality-maintenanceEnables AI assistants to automatically analyze GitHub repositories and set up development environments by detecting tech stacks, installing dependencies, and verifying project builds. Provides safe tools for repository cloning, file system operations, package installation, and build verification through an allowlisted command system.
- AlicenseAqualityCmaintenanceEnables AI assistants to automate DDEV development environments, including project management, database operations, and executing commands for various CMS frameworks.144913GPL 2.0
- FlicenseBqualityCmaintenanceEnables deploying sites, managing databases, and troubleshooting deployments on Hostwares from AI assistants.14
- Flicense-qualityDmaintenanceProvisions Docker-based development environments on demand, allowing AI agents to create, manage, and inspect containerized dev environments without manual setup.
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Your AI builds, deploys, and runs full-stack apps on a hosted workspace created at first sign-in.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ProxiBlue/pb-hypernode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server