MCP CWP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CWP_PORT | No | Port for the CWP server | 2304 |
| NODE_ENV | No | Node environment | production |
| CWP_DEBUG | No | Enable debug mode | true |
| LOG_LEVEL | No | Logging level | info |
| CWP_API_KEY | Yes | Your CWP API key | |
| CWP_API_URL | Yes | The URL of your CWP server | |
| MCP_MOCK_MODE | No | Enable mock mode | false |
| CWP_SSL_VERIFY | No | Whether to verify SSL certificates | false |
| ENABLE_HEALTH_CHECKS | No | Enable health checks | false |
| ENABLE_PERFORMANCE_MONITORING | No | Enable performance monitoring | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| prompts | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| cwp_account_createC | Create a new CWP account with domain, username, and package |
| cwp_account_updateC | Update an existing CWP account |
| cwp_account_deleteB | Delete a CWP account permanently |
| cwp_account_suspendC | Suspend a CWP account |
| cwp_account_unsuspendC | Unsuspend a CWP account |
| cwp_account_reset_passwordC | Reset password for a CWP account |
| cwp_account_infoB | Get detailed information about a CWP account |
| cwp_account_listB | List all CWP accounts with optional filtering |
| cwp_account_quota_checkC | Check disk and bandwidth quota for a CWP account |
| cwp_account_metadataB | Get metadata for a CWP account (domain, email, status, etc.) |
| cwp_autossl_installC | Install SSL certificate for a domain |
| cwp_autossl_renewC | Renew SSL certificate for a domain |
| cwp_autossl_listC | List all SSL certificates |
| cwp_autossl_deleteC | Delete SSL certificate for a domain |
| cwp_package_listB | List all hosting package templates |
| cwp_ftp_listB | List all FTP accounts for a specific user |
| cwp_ftp_createC | Create a new FTP account for a user |
| cwp_ftp_deleteC | Delete an FTP account for a user |
| cwp_ftp_update_permissionsC | Update FTP account permissions (path or quota) |
| cwp_usermysql_listB | List all MySQL databases for a specific user |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 20 tools
Most tools target distinct resources and actions, but cwp_account_info and cwp_account_metadata overlap in retrieving account details, and quota_check could be part of info. Otherwise, the tools are well-separated.
Consistent cwp_ prefix and snake_case throughout, but a few tools use noun_noun (account_info, account_metadata) instead of verb_noun, creating minor inconsistency. Overall readable and predictable.
20 tools is slightly above the ideal 3-15 range, but each has a purpose. However, redundancy like info/metadata inflates the count unnecessarily.
Account, FTP, and SSL management have reasonable coverage, but MySQL only offers list with no create/delete/update, and packages only list. These are significant gaps for a hosting control panel, likely causing agent failures on common tasks.