Back to Browse

Websupport MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Manage a Websupport account: DNS, FTP, hosting, databases, mailboxes, VPS and invoices.

About

Manage a Websupport account: DNS, FTP, hosting, databases, mailboxes, VPS and invoices.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: 5 highly-trusted packages.

8 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

API key identifier from WebAdmin (Security -> API keys). Generate a Standard pair; a DynDNS pair authenticates against one endpoint only.Optional

Environment variable: WEBSUPPORT_API_KEY

API secret paired with the key. Used only to sign requests; it is never transmitted.Required

Environment variable: WEBSUPPORT_API_SECRET

Market selection. Defaults to https://rest.websupport.sk. Also live: rest.websupport.cz, rest.websupport.hu, rest.websupport.se.Optional

Environment variable: WEBSUPPORT_API_BASE_URL

Language for API responses.Optional

Environment variable: WEBSUPPORT_ACCEPT_LANGUAGE

Set to 1 to register the 13 write tools. Omit for a read-only deployment, where they never appear in tools/list at all.Optional

Environment variable: WEBSUPPORT_ALLOW_WRITE

Set to 1 to register the 7 destructive tools, each of which also requires confirm: true on every call. Independent of WEBSUPPORT_ALLOW_WRITE.Optional

Environment variable: WEBSUPPORT_ALLOW_DESTRUCTIVE

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-tydung26-websupport-mcp": {
      "env": {
        "WEBSUPPORT_API_KEY": "your-websupport-api-key-here",
        "WEBSUPPORT_API_SECRET": "your-websupport-api-secret-here",
        "WEBSUPPORT_ALLOW_WRITE": "your-websupport-allow-write-here",
        "WEBSUPPORT_API_BASE_URL": "your-websupport-api-base-url-here",
        "WEBSUPPORT_ACCEPT_LANGUAGE": "your-websupport-accept-language-here",
        "WEBSUPPORT_ALLOW_DESTRUCTIVE": "your-websupport-allow-destructive-here"
      },
      "args": [
        "-y",
        "websupport-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

websupport-mcp

An MCP server (TypeScript, ESM, stdio) wrapping the Websupport REST API v1 + v2 — DNS, FTP, hosting, databases, mailboxes, VPS and invoices — exposed as MCP tools with signed HMAC-SHA1 authentication.

npm licence: MIT

Status: early. All 50 tools are implemented and published, but most have been verified only as far as reaching the API — routes, signing and error handling are proven; response shapes largely are not. Read docs/verification-matrix.md before relying on any tool, and see IMPLEMENTATION_PLAN.md for progress.

Risk tiers

Tools are registered in three tiers, and the tier gates registration — a read-only deployment never sees a write tool in tools/list at all, so it costs no client context and offers no affordance.

TierOpt-inExtra per-call gateCurrently
readalways on30 tools
writeWEBSUPPORT_ALLOW_WRITE=113 tools
destructiveWEBSUPPORT_ALLOW_DESTRUCTIVE=1confirm: true argument7 tools

A tool is destructive when it destroys state you cannot cheaply recreate — not merely because it writes. A graceful VPS reboot is write; a hard power-cycle is destructive, because it can corrupt in-flight writes. Taking a snapshot is write; restoring one is destructive, because it discards everything since.

The two opt-ins are independent: WEBSUPPORT_ALLOW_DESTRUCTIVE=1 alone does not unlock write tools, and vice versa.

The confirm: true argument, not MCP elicitation, is the safety boundary. Protocol negotiation may settle well below the revision that supports elicitation — this server's SDK currently tops out at 2025-11-25 — and a gate that disappears against an older client is not a gate.

Install

Requires Node >= 22. Nothing to install ahead of time — npx fetches the package on first run.

Add this to your MCP client's configuration:

{
  "mcpServers": {
    "websupport": {
      "command": "npx",
      "args": ["-y", "websupport-mcp"],
      "env": {
        "WEBSUPPORT_API_KEY": "…",
        "WEBSUPPORT_API_SECRET": "…"
      }
    }
  }
}

That gives you the 30 read-only tools. Nothing in that configuration can change your account.

To allow changes, add only the opt-ins you need — see Risk tiers above:

"env": {
  "WEBSUPPORT_API_KEY": "…",
  "WEBSUPPORT_API_SECRET": "…",
  "WEBSUPPORT_ALLOW_WRITE": "1",
  "WEBSUPPORT_ALLOW_DESTRUCTIVE": "1"
}

Ready-made configurations for each combination live in examples/mcp-config/. Pin a version with websupport-mcp@0.1.1 in place of websupport-mcp.

Once it is wired up, ask your client to run ws_auth_check. It returns {"verified": true} when the credentials work, which is the quickest way to separate a bad key from anything else.

From a local checkout

For development, or to run unreleased changes:

npm install
npm run build

Then point command at node and args at the built entrypoint (<checkout>/dist/index.js) instead of npx.

Credentials

Generate a Standard API access pair in WebAdmin (Security → API keys). A DynDNS-only pair authenticates against /nic/update and nothing else.

VariableRequiredDefaultNotes
WEBSUPPORT_API_KEYyesThe pair's identifier.
WEBSUPPORT_API_SECRETyesThe pair's secret. Used for HMAC-SHA1 signing; never logged, never returned in an error.
WEBSUPPORT_API_BASE_URLnohttps://rest.websupport.skMarket selection — see below.
WEBSUPPORT_ACCEPT_LANGUAGEnoen_usOne of en_us, sk, cs_cz, hu.
WEBSUPPORT_ALLOW_WRITEnooffSet to 1 to register write tools.
WEBSUPPORT_ALLOW_DESTRUCTIVEnooffSet to 1 to register destructive tools.

Copy .env.example for local development. .env is gitignored.

Markets

Websupport is a regional team.blue/Loopia brand, so the API host selects the market. The same application serves every host — GET /v2/docs/openapi.json is byte-identical across all of them — so switching markets is configuration, never a code change.

MarketWEBSUPPORT_API_BASE_URL
Slovakia (default)https://rest.websupport.sk
Czechiahttps://rest.websupport.cz
Hungaryhttps://rest.websupport.hu
Swedenhttps://rest.websupport.se

An unrecognised host warns to stderr and is used anyway, so a newly added market works without waiting for a release.

Documentation

DocumentWhat it holds
docs/tools.mdEvery tool: tier, method + path, confirm requirement. Generated from the registry — never hand-edited.
docs/verification-matrix.mdWhat has actually been proven about each tool, and what has not. Read this before trusting any tool in production.
docs/system-architecture.mdThe request path, the signing contract and its three counter-intuitive rules, and how the tier model works.
docs/codebase-summary.mdModule map — what lives where and why.
examples/mcp-config/Ready-to-edit client configurations for each tier combination.

Scope

Order creation and invoice/order payment endpoints are deliberately out of scope and are asserted absent by test. v1 DNS-record CRUD and v1 FTP-account CRUD are deprecated upstream and are not exposed — the v2 tools cover both.

Development

npm test              # offline suite
npm run test:network  # live, unauthenticated probes (market hosts + OpenAPI drift)
npm run typecheck
npm run lint
npm run build

Network suites are separated deliberately: a Websupport outage must not fail the build.

Toolchain

Node >= 22, to run or to build. Node 20 reached end of life on 2026-04-30 and is not supported. CI covers the two live LTS lines, 22 and 24, and builds and smoke-tests the bundle on each.

Building also needs npm >= 11: npm 10 cannot resolve the bundler's dependency tree and fails with an unhelpful Cannot read properties of null (reading 'edgesOut'). If you hit that, upgrade npm rather than debugging the repository.

Security

The credentials this server holds grant full control of a Websupport account — there is no read-only API pair. SECURITY.md covers how they are handled, which tools return sensitive data, and how to report a vulnerability privately.

Contributing

See CONTRIBUTING.md. Note two boundaries enforced by test rather than review: no order or payment endpoints, and every destructive tool must declare confirm: true.

Licence

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!