AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Ploi Mcp

mcp-sudanese-ploi-mcp · by sudanese

Ploi MCP server

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add mcp-sudanese-ploi-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-sudanese-ploi-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ploi Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Ploi MCP Server

An MCP (Model Context Protocol) server that exposes Ploi.io API functionality as tools for AI assistants like Claude.

Deploy your sites with a simple "deploy" command - no clicking around in dashboards!

Features

  • One-command deployments - Just say "deploy" and watch it happen
  • Verified deploys - Deployments wait for real completion and report success/failure (no false "success")
  • Project linking - Link projects to Ploi sites with .ploi.json
  • Full site lifecycle - Create, delete, deploy, suspend, resume, view logs
  • Server management - List, restart, view logs
  • Environment & deploy script - Read and update a site's .env and deploy script without SSH
  • Daemons & queue workers - Manage queue:work daemons and Ploi's per-site queue workers (create/restart/pause/delete)
  • Cron jobs - Add/verify the Laravel scheduler (* * * * * schedule:run) and other crons
  • SSL certificates - Request (Let's Encrypt), list, and delete certificates
  • Databases - Create/delete databases; list, run, schedule, and delete backups
  • Service restart - Restart nginx / php-fpm / mysql / redis / supervisor
  • Optional id allowlist - Hard-bound which servers/sites the mutating tools may touch (see [Configuration](#restricting-which-serverssites-can-be-mutated-recommended))

Installation

Option 1: Global Install (Recommended)

npm install -g ploi-mcp

Option 2: No Install (using npx)

Skip installation - npx will download and run it automatically when configured.

Quick Start

Step 1: Get your API token

Get your token from ploi.io/profile/api-keys.

> 🔐 Keep your token out of the command line. Passing --token exposes it in > the process list (ps aux) and shell history, and stores it in plaintext in > ~/.claude.json. Prefer one of the secure options below. ploi-mcp resolves the > token in this order: --token-file--token (deprecated) → PLOI_API_TOKEN > env → ~/.ploi/config.php (the official ploi token store).

Step 2: Configure Claude Code

Add to ~/.claude.json — pass the token via the env block, not args:

If you installed globally:

{
  "mcpServers": {
    "ploi": {
      "type": "stdio",
      "command": "ploi-mcp",
      "env": { "PLOI_API_TOKEN": "YOUR_TOKEN" }
    }
  }
}

If using npx (no install):

{
  "mcpServers": {
    "ploi": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "ploi-mcp"],
      "env": { "PLOI_API_TOKEN": "YOUR_TOKEN" }
    }
  }
}

Already use the Ploi CLI? Run ploi token once and ploi-mcp will read the token from ~/.ploi/config.php automatically — no token in your MCP config at all.

Step 3: Restart Claude Code

Close and reopen Claude Code for the MCP server to load.

Step 4: Link your project

In Claude Code, say:

"Link this project to mydomain.com"

Step 5: Deploy anytime

Just say:

"deploy"

That's it! The deployment will run and notify you when complete.

Configuration

Claude Code

Add to ~/.claude.json:

{
  "mcpServers": {
    "ploi": {
      "type": "stdio",
      "command": "ploi-mcp",
      "args": ["--token", "YOUR_TOKEN"]
    }
  }
}

Or using environment variable:

{
  "mcpServers": {
    "ploi": {
      "type": "stdio",
      "command": "ploi-mcp",
      "env": {
        "PLOI_API_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}

Claude Desktop

Add to config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "ploi": {
      "command": "ploi-mcp",
      "args": ["--token", "YOUR_TOKEN"]
    }
  }
}

Restricting which servers/sites can be mutated (recommended)

The Ploi API token is account-wide — by default the assistant can deploy, restart, suspend, or delete-backups on any server or site in your account. Two layers reduce that blast radius:

  1. Scope the token itself. Create a least-privilege API token in Ploi

(https://ploi.io/profile/api-keys) limited to only the servers you want the assistant to manage. This is the strongest bound — the MCP can't exceed what the token allows.

  1. Set an id allowlist (optional, defence-in-depth). When these env vars are

set, every mutating tool (deploy_site, deploy_project, restart_server, suspend_site, resume_site, create/run/delete_database_backup) refuses ids outside the list. Read-only tools (list/get) are unaffected.

``json { "mcpServers": { "ploi": { "command": "ploi-mcp", "env": { "PLOI_API_TOKEN": "YOUR_TOKEN", "PLOI_ALLOWED_SERVER_IDS": "12,34", "PLOI_ALLOWED_SITE_IDS": "567,890" } } } } ``

Comma-separated ids. Unset or blank = no restriction (default). A typo (a non-numeric id) fails loudly rather than silently denying everything.

Usage

Command Line Options

ploi-mcp --token YOUR_TOKEN
ploi-mcp -t YOUR_TOKEN
PLOI_API_TOKEN=YOUR_TOKEN ploi-mcp

Project Setup

Link a project to its Ploi site for one-command deployments:

"Link this project to mydomain.com"

This creates .ploi.json in your project:

{
  "server_id": 12345,
  "site_id": 67890
}

Now just say "deploy" and it will:

  1. Trigger deployment
  2. Wait for completion (polling every 5 seconds)
  3. Report success or failure

Available Tools

Project Tools

| Tool | Description | |------|-------------| | deploy_project | Deploy current project and wait for completion | | init_project | Link project to a Ploi site by domain | | get_project_deploy_status | Check deployment status |

Server Management

| Tool | Description | |------|-------------| | list_servers | List all servers | | get_server | Get server details | | restart_server | Restart a server | | get_server_logs | Get server logs (auth, error, lastlog, syslog) |

Site Management

| Tool | Description | |------|-------------| | list_sites | List sites on a server | | get_site | Get site details | | find_site_by_domain | Search for a site by domain | | create_site | Create a new site (vhost, directory, system user) | | delete_site | Permanently delete a site (vhost, files, system user) | | deploy_site | Deploy a site and wait for completion | | get_site_logs | Get deployment logs | | suspend_site | Suspend a site | | resume_site | Resume a suspended site |

Environment & Deploy Script

| Tool | Description | |------|-------------| | get_site_env | Read a site's .env | | update_site_env | Replace a site's .env (full-file) | | get_deploy_script | Read a site's deploy script | | update_deploy_script | Replace a site's deploy script (full-file) |

Daemons

| Tool | Description | |------|-------------| | list_daemons | List daemons (e.g. queue:work) on a server | | create_daemon | Create a daemon | | restart_daemon | Restart a daemon | | toggle_daemon | Pause / resume a daemon | | delete_daemon | Delete a daemon |

Cron Jobs

| Tool | Description | |------|-------------| | list_crons | List cron jobs on a server | | create_cron | Create a cron job (e.g. the Laravel scheduler) | | delete_cron | Delete a cron job |

Queue Workers

| Tool | Description | |------|-------------| | list_queues | List a site's queue workers | | get_queue | Get a single queue worker | | create_queue | Create a queue worker | | restart_queue | Restart a queue worker | | toggle_queue | Pause / resume a queue worker | | delete_queue | Delete a queue worker |

SSL Certificates

| Tool | Description | |------|-------------| | list_certificates | List a site's certificates | | request_certificate | Request a certificate (defaults to Let's Encrypt) | | delete_certificate | Delete a certificate |

Services

| Tool | Description | |------|-------------| | restart_service | Restart nginx / php-fpm / mysql / redis / supervisor |

Database Management

| Tool | Description | |------|-------------| | list_databases | List databases on a server | | create_database | Create a database (optionally with a user/password) | | delete_database | Permanently delete a database | | list_database_backups | List database backup configurations | | get_database_backup | Get a database backup configuration | | run_database_backup | Run an existing backup configuration now ("backup now") | | create_database_backup | Create a scheduled backup configuration (needs a backup destination) | | delete_database_backup | Delete a backup configuration |

> Note: mutating tools (anything that creates, updates, deletes, deploys, restarts, or toggles) carry a destructiveHint so MCP hosts can prompt before running them, and honour the optional [id allowlist](#restricting-which-serverssites-can-be-mutated-recommended). update_site_env / update_deploy_script writes are applied asynchronously by Ploi — allow a few seconds before reading them back.

Example Commands

"List my servers"
"Deploy"
"Deploy mydomain.com"
"Create a Laravel site for app.mydomain.com"
"Add the scheduler cron to server 12"
"Restart the queue worker on app.mydomain.com"
"Request a Let's Encrypt cert for app.mydomain.com"
"Show me the .env for app.mydomain.com"
"Restart nginx on server 12"
"List my database backups"
"Run database backup 42 now"

Development

git clone https://github.com/sudanese/ploi-mcp.git
cd ploi-mcp
npm install
npm run build
npm link

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.