Hostwares

MCP Server

Use Hostwares from Cursor, Claude Desktop, Windsurf, or any MCP-compatible AI editor.

What is MCP

Model Context Protocol (MCP) is an open standard that lets AI editors connect to external tools. The Hostwares MCP server lets you deploy sites, manage databases, and troubleshoot — all from your AI editor using natural language.

Setup

1. Install the MCP server:

npm install -g hostwares-mcp

2. Get your API key from Dashboard → API Keys

3. Add to your editor config (see below)

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "hostwares": {
      "command": "hostwares-mcp",
      "env": {
        "HOSTWARES_API_KEY": "your-api-key"
      }
    }
  }
}

Then in Cursor chat: “Deploy this project to Hostwares” — it works.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "hostwares": {
      "command": "hostwares-mcp",
      "env": {
        "HOSTWARES_API_KEY": "your-api-key"
      }
    }
  }
}

Works the same way in Windsurf, VS Code + Copilot, or any MCP-compatible tool.

Available Tools

ToolDescription
deploy_siteDeploy from GitHub repo
list_sitesList all deployed sites
get_site_statusCheck site status
restart_siteRestart a site
get_deployment_logsView deploy logs
configure_domainSet custom domain
update_env_varsSet environment variables
deploy_databaseCreate managed database
list_databasesList databases
billing_summaryCheck balance and billing
askAsk AI anything about your infrastructure

Example prompts in any MCP editor: “Deploy my-app from github.com/user/repo to Hostwares”, “Why is my Hostwares site returning 502?”, “Set DATABASE_URL on my-app in Hostwares”