Metadata-Version: 2.4
Name: fleethost-mcp
Version: 0.1.0
Summary: MCP server for Fleet hosting platform — deploy apps and databases from any MCP-compatible agent
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.6.0
Requires-Dist: httpx>=0.28.0

# fleethost-mcp

MCP server for [Fleet](https://fleethost.space) — deploy applications and databases from any MCP-compatible agent (Claude CLI, Cline, opencode, etc.).

## Installation

```bash
pip install fleethost-mcp
```

## Configuration

Add to your agent's MCP config:

```json
{
  "mcpServers": {
    "fleet": {
      "command": "fleethost-mcp",
      "args": []
    }
  }
}
```

## Usage

1. Start a conversation with your agent
2. Say: "Deploy my app to Fleet"
3. Agent will ask for your Fleet credentials once
4. Token is cached for future sessions

## Tools

| Tool | Description |
|------|-------------|
| `login` | Authenticate with your Fleet account |
| `deploy_app` | Deploy a new application |
| `list_apps` | List all your applications |
| `get_app_status` | Get live deployment status |
| `get_app_logs` | Fetch deployment or runtime logs |
| `redeploy_app` | Trigger a redeploy |
| `update_envs` | Set environment variables |
| `deploy_database` | Deploy a database (PostgreSQL, MySQL, MongoDB, Redis) |
| `list_databases` | List all your databases |
| `get_vps_info` | View VPS info and storage usage |
| `get_user_info` | View your Fleet profile |
