From zscaler
Creates ZPA server group with app connector group dependency (checks existing or creates if needed), verifies setup, and outputs summary with IDs for application segments.
npx claudepluginhub zscaler/zscaler-mcp-server --plugin zscaler<server_group_name> [connector_group_name]# Create ZPA Server Group Create server group: **$ARGUMENTS** ## Step 1: Parse Input Extract: - **Server group name** - **Connector group name** (optional -- will check for existing ones) ## Step 2: Check Existing Connector Groups text If no suitable connector group exists and no name was provided, ask the administrator if one should be created. ## Step 3: Create Connector Group (if needed) text ## Step 4: Create Server Group text ## Step 5: Verify text Confirm the server group references the correct connector group. Present a summary with IDs for use in application segment cr...
/provisionProvision a secure Hetzner VPS with Claude Code pre-installed. Creates a hardened server with UFW firewall, fail2ban, and SSH security.
/cloudflare-tunnelCreates and configures a Cloudflare Tunnel to securely expose a local service at a public hostname, generating setup commands, config.yml, and service installation steps.
/zapBuilds multi-step Zapier Zaps with triggers, actions, filters, paths, formatters, delays, and OpenAI integrations from automation requests.
/build-api-gatewayBuilds production-ready API gateway for microservices with intelligent routing, authentication, rate limiting, load balancing, and response transformation. Supports Kong, Express Gateway, AWS API Gateway, custom Node.js.
Share bugs, ideas, or general feedback.
Create server group: $ARGUMENTS
Extract:
zpa_list_app_connector_groups()
```text
If no suitable connector group exists and no name was provided, ask the administrator if one should be created.
## Step 3: Create Connector Group (if needed)
```text
zpa_create_app_connector_group(
name="<name>",
location="<location>",
country_code="<cc>"
)
```text
## Step 4: Create Server Group
```text
zpa_create_server_group(
name="<server_group_name>",
app_connector_group_ids=["<connector_group_id>"]
)
```text
## Step 5: Verify
```text
zpa_get_server_group(group_id="<id>")
```text
Confirm the server group references the correct connector group. Present a summary with IDs for use in application segment creation.