npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@webnestify/xcloud-mcp

v1.0.2

Published

Local MCP server for managing your own xCloud servers and sites from your AI agent.

Readme

xCloud MCP

OpenSSF Scorecard

A local MCP server that lets you manage your own xCloud servers and sites from inside your AI agent: Claude Code, Claude Desktop, Codex CLI, or any other MCP-speaking harness.

You give it one xCloud Personal Access Token. It calls the xCloud REST API on your behalf and hands your agent a curated set of tools: list your fleet, check a server's health, read a site's logs, trigger a backup, apply WordPress updates, purge a cache, and so on. It runs on your own machine over stdio. Nothing about your account leaves your box except the calls you already make to xCloud.

Why you might want it

  • Ask your agent about your infrastructure. "Which of my sites have pending WordPress updates?" "Is this server's disk filling up?" "Show me the last hour of access logs for example.com."
  • Act on it, safely. Create a restore point before a risky change, run a vulnerability scan, purge a cache after a deploy, all without leaving the agent or pasting credentials into a prompt.
  • Secure by default. You configure nothing to make it safe. Read and safe-write tools work out of the box; anything destructive is hidden until you deliberately turn it on, and then asks before it runs. See SECURITY.md.

Requirements

  • Node.js 24 or newer.
  • An xCloud Personal Access Token (PAT). Mint one at app.xcloud.host under Account, then API Tokens. Scope it as narrowly as the work needs. The token is your real safety boundary, so a read-only token can only ever read. See USAGE.md for how to store it.

Quick start

[!CAUTION] Keeping the token out of a plaintext config file (pulling it from macOS Keychain, Windows Credential Manager, gopass, 1Password, or Vault) is a one-line change covered in USAGE.md.

Claude Code — one command (-s user installs for every project; drop it to scope to the current project only):

claude mcp add xcloud -s user --env XCLOUD_API_TOKEN='your-xcloud-pat' -- npx -y @webnestify/[email protected]

Keep the single quotes around the token — xCloud PATs contain a |, which an unquoted shell would read as a pipe.

Other harnesses (Claude Desktop, Codex CLI, and anything else that speaks MCP) — add the server to your agent's MCP config and set your token. Most use an mcpServers block like this:

{
  "mcpServers": {
    "xcloud": {
      "command": "npx",
      "args": ["-y", "@webnestify/[email protected]"],
      "env": { "XCLOUD_API_TOKEN": "your-xcloud-pat" }
    }
  }
}

Pinning the version (@1.0.2) means you always run a known build rather than whatever is newest.

Prefer to run from source (for development or auditing)? Clone the repository, build it, and point your harness at the build:

npm install && npm run build
{
  "mcpServers": {
    "xcloud": {
      "command": "node",
      "args": ["/absolute/path/to/xcloud-mcp/dist/index.js"],
      "env": { "XCLOUD_API_TOKEN": "your-xcloud-pat" }
    }
  }
}

Restart your agent, and the xCloud tools appear. Ask it to run whoami to confirm which account and team your token is scoped to.

What you can do

36 tools, grouped by how much they can change:

  • 25 read tools. List and inspect servers, sites, services, firewall rules, backups, logs, SSL, vulnerabilities, WordPress status, and more. Available by default.
  • 7 safe-write tools. Create a backup, run a scan, purge a cache, apply WordPress updates, mint a magic-login link. Reversible or non-disruptive, and available by default.
  • 4 destructive tools. Reboot a server, restart a service, delete a firewall rule or cron job. Hidden until you opt in, and each one asks before it runs.

The full catalog, with every tool's classification and required token scope, is in FEATURES.md.

Documentation

  • USAGE.md covers environment variables, per-OS credential setup, the example client config, and how to enable destructive tools.
  • FEATURES.md is the complete tool catalog, plus what was deliberately left out and why.
  • SECURITY.md covers the trust model, secret handling, redaction guarantees, the destructive-op gate, and how to report a vulnerability.

Status

v1.0.2, published to npm — install via npx as shown in the quick start. Every release carries signed build provenance and an attested SPDX SBOM you can verify (see SECURITY.md).

About xCloud

xCloud is a third-party server and site management platform. This is an independent, community-built MCP server for the public xCloud REST API — it is not an official xCloud product and is not affiliated with or endorsed by xCloud. "xCloud" and related marks belong to their respective owner.

License

MIT © Simon Gajdosik, Webnestify s.r.o.