Manage authorized ZynoHosting sites, files, deployments, and downloads through local stdio.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zynohosting": {
"env": {
"ZYNO_HOSTING_MCP_ROOTS": "/absolute/path/to/project"
},
"args": [
"-y",
"@zyno-io/zynohosting",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
@zyno-io/zynohosting is the public command-line and local MCP client for ZynoHosting. It can:
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@zyno-io/zynohosting' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @zyno-io/zynohosting against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Server for kubernetes management commands
MCP server for ZenML - browse stacks, pipelines, runs, artifacts & trigger pipeline runs via API
MCP Security Weekly
Get CVE alerts and security updates for io.github.zyno-io/zynohosting and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
@zyno-io/zynohosting is the public command-line and local MCP client for ZynoHosting. It can:
The package requires Node.js 24.
Full CLI and MCP documentation is available at zyno-io.github.io/zynohosting-cli.
npm install --global @zyno-io/zynohosting
zynohosting --help
It installs two executables:
zynohosting — the human and CI command-line interface;zynohosting-mcp — the local stdio MCP server.You can also run commands without a global install:
npx -y @zyno-io/zynohosting sites list
For an interactive user:
zynohosting login --permission hosting.sitesRead
zynohosting login \
--name "Claude MCP — work laptop" \
--permission hosting.sitesRead \
--permission hosting.deploy \
--permission forms.create \
--permission forms.edit \
--renewable
Browser login creates a tenant-bound scoped CLI token. hosting.sitesRead is requested when no --permission is supplied; repeat the option to request the narrowest complete set for your workflow. Access tokens always expire after 60 minutes. --renewable stores the rotating renewal credential in the operating system credential store and lets long-running CLI/MCP processes refresh automatically. While MCP remains alive, it renews in the background even when no tools are being called; each request also checks freshness as a backstop. The renewal secret is never written to the JSON config file.
Revoke the saved scoped grant and remove its local credentials with zynohosting logout.
For CI or another non-interactive environment, inject a tenant API key:
export ZYNO_HOSTING_API_KEY='...'
The CLI also accepts --environment production|alpha|dev and --api-url. Credentials are resolved in this order:
Relevant environment variables are:
ZYNO_HOSTING_API_KEYZYNO_HOSTING_ACCESS_TOKENZYNO_HOSTING_TENANT_IDZYNO_HOSTING_TOKEN_EXPIRES_ATZYNO_HOSTING_API_URLZYNO_SUITE_API_URLZYNO_AUTH_API_URLZYNO_HOSTING_ENVIRONMENTZYNO_HOSTING_CONFIGZYNO_HOSTING_LOGIN_URLzynohosting sites list
zynohosting sites get example.com
zynohosting sites get 11111111-1111-4111-8111-111111111111 --json
A site may be addressed by its UUID, primary hostname, vanity hostname, or authorized alias.
Remote paths are relative to the site document root. Absolute paths, .., control characters, backslashes, and symbolic-link traversal are rejected.
zynohosting files list example.com
zynohosting files list example.com wp-content/themes --recursive
zynohosting files get example.com index.html --output ./index.html
zynohosting files put example.com ./index.html index.html
zynohosting files rm example.com obsolete.html --yes
Use ETags to prevent overwriting a file that changed since it was inspected:
zynohosting files put example.com ./index.html index.html --etag '"etag-from-list"'
zynohosting files rm example.com obsolete.html --etag '"etag-from-list"' --yes
Use --create to require that an uploaded path does not already exist.
zynohosting deploy example.com ./dist
zynohosting deploy example.com ./dist --dry-run
zynohosting deploy example.com ./dist --yes
Deployment is always planned before it is applied. The client and node agent: