multi-node

multi-node is a skill for Claude Code, Codex from pyworkload/3x-ui-mcp. It costs 87 tokens per session (1,416 once invoked), scanned A, original, MIT.

A tool for connecting additional 3x-ui panels as nodes managed by a main panel. It tests the connection, controls which proxy connections are synchronised, and reports node health and traffic.

In plain words
What is it for?
Use it to add servers to a cluster, configure certificate verification or mutual TLS, synchronise selected inbounds, and monitor each node.
Why use it?
It helps operate several servers without copying every configuration by hand. Connection probing and TLS trust choices also reduce the risk of saving an unreachable or improperly trusted node.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/pyworkload/3x-ui-mcp/multi-node
Any agent
npx skills add pyworkload/3x-ui-mcp --skill multi-node
Clone the repo
git clone --depth 1 https://github.com/pyworkload/3x-ui-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for multi-node

README.md
[![agentmods](https://agentmods.dev/badge/skills/pyworkload/3x-ui-mcp/multi-node.svg)](https://agentmods.dev/skills/pyworkload/3x-ui-mcp/multi-node)
Your own site
<a href="https://agentmods.dev/skills/pyworkload/3x-ui-mcp/multi-node"><img src="https://agentmods.dev/badge/skills/pyworkload/3x-ui-mcp/multi-node.svg" alt="Measured on agentmods" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,416 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00087 $0.01416
Opus 5 $0.00044 $0.00708
Sonnet 5 $0.00017 $0.00283
Haiku 4.5 $0.00009 $0.00142

Measured today against content hash 049d27f717ad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

multi-node scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/multi-node/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Multi-node

A node is another 3x-ui panel this one drives: inbounds and clients are pushed to it, and its traffic and online state are pulled back. Most of these calls reach the node itself over the network, not just the local panel, so failures here are as often connectivity as configuration.

Node tools need panel v3.5.0+; reload_node_mtls_client needs v3.7.0+.

Adding a node, in the right order

  1. Probe before saving. test_node takes the same connection parameters as add_node and reports whether they work, without writing anything:
test_node address="node1.example" port=2053 scheme="https" api_token="…" tls_verify_mode="verify"
  1. Save it. add_node probes again as part of the write and refuses parameters it cannot reach, so a successful call means the link works.
  2. See what it offers. list_node_inbounds id=<id> lists the inbounds that exist on the node — the input for selective sync.
  3. Choose the sync mode. inbound_sync_mode="all" pushes everything; "selected" with inbound_tags=[…] pushes only the named tags. Selective sync is the right default for a mixed cluster, where one node is not meant to carry every customer.

allow_private_address must be set for a node on a private or loopback address — otherwise the probe rejects it as unroutable, which is the intended protection against pointing a node at yourself by accident.

TLS trust modes

tls_verify_mode decides what the master accepts from the node:

Mode Meaning When
verify Standard chain validation The node has a real certificate for a real domain
skip No validation at all Never, outside a lab — it removes the only defence against interception
pin The certificate must match a recorded fingerprint Self-signed certificates, which is most private clusters
mtls Both sides present certificates The strongest option, and the one to grow into

For pin, read the fingerprint from the node and store it in the node's pinned_cert_sha256 (base64 SHA-256 of the leaf certificate):

Read the full file on GitHub · 125 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 125 lines · 87 tokens per session scan A 049d27f717ad

Subscribe to this mod's changes

multi-node is a skill published in the GitHub repository pyworkload/3x-ui-mcp (5 stars, last pushed 4d ago), licensed MIT. It adds 87 tokens to every session and 1,416 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

chainstack

Work with the Chainstack MCP server to manage blockchain nodes and projects. Use when deploying nodes, migrating to Chainstack from another RPC provider such as QuickNode or Alchemy, checking platform status, searching Chainstack docs, contacting the Chainstack team, or interacting with the Chainstack platform API via…

chainstacklabs/mcp-server · 66 tokens

deploy

Build, deploy, verify, or roll back this server on the host. Use when asked to ship a change, rebuild a container, update nginx, or diagnose why the service is down. Covers the memory-capped build, the reload-not-restart rule, and the unhealthy-container failure mode.

HalemoGPA/whatsapp-mcp-server · 61 tokens

publish-release

Releases a new McpOrchestrator version end to end — version bump PR, tag, and the automated deploy to GitHub Releases, NuGet, and the MCP Registry. Use when asked to release, publish, deploy, ship, or bump the version of McpOrchestrator.

Byggarepop/dotnet-mcp-orchestrator · 63 tokens

cloudflare-management

Manage Cloudflare Workers, KV, R2, DNS, and cache via MCP. Use when the user asks to list zones, edit DNS records, purge cache, inspect Workers, read/write KV, or list R2 buckets on Cloudflare.

ofershap/mcp-server-cloudflare · 53 tokens

api-workers

Cloudflare Workers deployment using createWorkerHandler from @cyanheads/mcp-ts-core/worker. Covers the full handler signature, binding types, CloudflareBindings extensibility, runtime compatibility guards, and wrangler.toml requirements.

cyanheads/mcp-ts-core · 51 tokens

api-workers

Cloudflare Workers deployment using createWorkerHandler from @cyanheads/mcp-ts-core/worker. Covers the full handler signature, binding types, CloudflareBindings extensibility, runtime compatibility guards, and wrangler.toml requirements.

cyanheads/pubmed-mcp-server · 51 tokens