> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ezforge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ezforge servers

> List and manage deployed MCP servers

## ezforge servers list

List all servers in the current project.

```bash theme={null}
ezforge servers list [--project <id>]
```

**Output:**

```
NAME             STATUS    REGION  URL
weather-server   running   ord     https://weather-server.mcp.ezforge.ai
echo-server      stopped   iad     https://echo-server.mcp.ezforge.ai
```

***

## ezforge servers status

Show detailed status for a single server.

```bash theme={null}
ezforge servers status <name> [--project <id>]
```

**Output:**

```
Server:    weather-server
Status:    running
Region:    ord
URL:       https://weather-server.mcp.ezforge.ai
CPU:       shared-1x
Memory:    256 MB
Auth:      ezforge_managed
Deployed:  2026-01-15 12:03:15 UTC (v1.2.0)

Metrics (last 24h):
  Requests:    12,450
  Errors:      3
  Avg latency: 48 ms
  P99 latency: 210 ms
```

***

## ezforge servers stop

Stop a running server. The VM is suspended but not deleted; it restarts on the next request (if auto-start is configured) or via `ezforge servers start`.

```bash theme={null}
ezforge servers stop <name>
```

***

## ezforge servers start

Start a stopped server.

```bash theme={null}
ezforge servers start <name>
```

***

## ezforge servers delete

Permanently delete a server and all its deployments.

```bash theme={null}
ezforge servers delete <name> [--force]
```

The `--force` flag skips the confirmation prompt.

<Warning>
  This action is irreversible. All deployment history, logs, and metrics are permanently deleted.
</Warning>
