Skip to main content

SiteBay MCP Server - WordPress hosting management through Claude Code

Project description

SiteBay MCP Server

smithery badge

A Model Context Protocol (MCP) server that provides Claude Code users with direct access to the SiteBay WordPress hosting platform. Manage your hosted WordPress sites, execute server commands, handle staging environments, and more through natural language interactions with the SiteBay cloud infrastructure.

Features

🌐 Site Management

  • List all your hosted WordPress sites
  • Get detailed site information (status, region, PHP version, etc.)
  • Create new WordPress sites using SiteBay's templates
  • Update site configurations (PHP version, admin credentials, etc.)
  • Delete sites with safety confirmations

⚡ Site Operations

  • Execute shell commands and WP-CLI commands on SiteBay servers
  • Edit files in wp-content directory on your hosted sites
  • View site events and deployment logs from SiteBay infrastructure
  • Manage external path configurations for URL proxying through SiteBay

🛠 Advanced Features

  • Staging site management on SiteBay infrastructure (coming soon)
  • Point-in-time backup restores from SiteBay's backup system (coming soon)
  • Team management for collaborative hosting (coming soon)
  • WordPress/Shopify/PostHog API proxy services through SiteBay (coming soon)

🗺 Helper Tools

  • List available SiteBay hosting regions
  • Browse SiteBay's WordPress templates
  • Account and billing information (coming soon)

Installation

Installing via Smithery

To install SiteBay MCP for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @sitebay/sitebay-mcp --client claude

Using uvx (Recommended)

# Install and run directly with uvx
uvx sitebay-mcp

# Or install for repeated use
uv tool install sitebay-mcp
sitebay-mcp

Using pip

# Install from PyPI (when published)
pip install sitebay-mcp

# Or install from source
git clone https://github.com/your-username/sitebay-mcp.git
cd sitebay-mcp
pip install -e .

Configuration

1. Get Your SiteBay API Token

  1. Log in to your SiteBay account
  2. Navigate to Settings in your account dashboard
  3. Generate a new API token
  4. Copy the token for use in configuration

2. Configure Claude Desktop

Add the following to your Claude Desktop configuration file:

For uvx installation:

{
  "mcpServers": {
    "sitebay": {
      "command": "uvx",
      "args": ["sitebay-mcp"],
      "env": {
        "SITEBAY_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

For pip installation:

{
  "mcpServers": {
    "sitebay": {
      "command": "python",
      "args": ["-m", "sitebay_mcp.server"],
      "env": {
        "SITEBAY_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

3. Claude Desktop Configuration File Locations

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\\Claude\\claude_desktop_config.json
  • Linux: ~/.config/claude/claude_desktop_config.json

Usage Examples

Creating a New WordPress Site

Claude: Create a new WordPress site called "myblog.example.com" with the title "My Amazing Blog", admin username "admin", password "SecurePass123!", and email "me@example.com"

Managing Existing Sites

Claude: List all my WordPress sites and show their current status

Claude: Get detailed information about myblog.example.com

Claude: Update the PHP version for myblog.example.com to 8.2

Executing Commands

Claude: Run "wp plugin list" on myblog.example.com to see what plugins are installed on the SiteBay server

Claude: Execute "wp search-replace 'http://old-domain.com' 'https://new-domain.com'" on myblog.example.com through SiteBay

Claude: Check the disk usage on myblog.example.com with "df -h" on the SiteBay server

File Management

Claude: Edit the style.css file in my active theme on myblog.example.com hosted on SiteBay

Claude: Show me recent events and deployment logs for myblog.example.com from SiteBay

External Paths (URL Proxying)

Claude: Create an external path "/api" on myblog.example.com that proxies to "https://my-external-api.com" through SiteBay

Claude: List all external path configurations for myblog.example.com on SiteBay

Getting Information

Claude: Show me all available SiteBay hosting regions

Claude: List all the WordPress templates available on SiteBay for new sites

Available Tools

Site Management

  • sitebay_list_sites - List all WordPress sites hosted on SiteBay
  • sitebay_get_site - Get detailed information about a hosted site
  • sitebay_create_site - Create a new WordPress site on SiteBay infrastructure
  • sitebay_update_site - Update site configuration on SiteBay servers
  • sitebay_delete_site - Delete a hosted site (with confirmation)

Site Operations

  • sitebay_site_shell_command - Execute shell/WP-CLI commands on SiteBay servers
  • sitebay_site_edit_file - Edit files in wp-content on SiteBay-hosted sites
  • sitebay_site_get_events - View site events and deployment logs from SiteBay
  • sitebay_site_external_path_list - List external path configs on SiteBay
  • sitebay_site_external_path_create - Create external path through SiteBay proxy

Helper Tools

  • sitebay_list_regions - List available SiteBay hosting regions
  • sitebay_list_templates - List WordPress templates available on SiteBay

Security Notes

  • Your SiteBay API token is stored securely in environment variables
  • All communications with SiteBay infrastructure use HTTPS encryption
  • API tokens can be revoked at any time from your SiteBay account dashboard
  • The MCP server runs locally and only proxies requests to SiteBay - no data is stored locally

Error Handling

The server provides clear error messages for common issues:

  • Authentication errors: Invalid or expired API tokens
  • Site not found: When referencing non-existent sites
  • Validation errors: Invalid parameters or missing required fields
  • Network errors: Connection issues with SiteBay API

Troubleshooting

Authentication Issues

  1. Verify your API token is correct
  2. Check that the token is properly set in the environment variable
  3. Ensure the token hasn't expired
  4. Try regenerating the token from your SiteBay account

Connection Issues

  1. Check your internet connection
  2. Verify SiteBay service status
  3. Check firewall settings
  4. Try restarting Claude Desktop

Tool Not Found

  1. Restart Claude Desktop after configuration changes
  2. Verify the configuration file is in the correct location
  3. Check the JSON syntax is valid
  4. Ensure uvx or Python is properly installed

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Ensure all tests pass and code is properly formatted
  6. Submit a pull request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Changelog

v0.1.0 (2024-01-XX)

  • Initial release
  • Site management tools
  • Shell command execution
  • File editing capabilities
  • External path management
  • Region and template listing

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sitebay_mcp-0.1.1751189381.tar.gz (55.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sitebay_mcp-0.1.1751189381-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file sitebay_mcp-0.1.1751189381.tar.gz.

File metadata

  • Download URL: sitebay_mcp-0.1.1751189381.tar.gz
  • Upload date:
  • Size: 55.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sitebay_mcp-0.1.1751189381.tar.gz
Algorithm Hash digest
SHA256 b554c8f8ff4da92e3c023a07981c89c9c6edf0d1de51d1d90792c1a817789c24
MD5 3fd93273eac140bee92593d28a24792d
BLAKE2b-256 07fe698c6ff4f7e4e8b00b456c4ec2dc89a975bd1160dd9a81449e8380fa3672

See more details on using hashes here.

File details

Details for the file sitebay_mcp-0.1.1751189381-py3-none-any.whl.

File metadata

File hashes

Hashes for sitebay_mcp-0.1.1751189381-py3-none-any.whl
Algorithm Hash digest
SHA256 828676f6de837ca1800d91f79054fc0c16a7a958df78663e96561ee84bad564c
MD5 3124ffe8a8441a9f6482d1dcdfc8d462
BLAKE2b-256 8bd1f14ae7eb48c80f32925331c268f94816cfaeb7dc7f50d7355d604085704a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page