get_status
Get deployment metadata including URL, storage type, SPA mode, and status information.
Annotations
| Annotation | Value |
|---|---|
readOnlyHint | true |
destructiveHint | false |
openWorldHint | true |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The deployment ID to check |
Return format
Deployment Status
ID: dep_abc123
Slug: my-site
URL: https://my-site.based.page
Status: active
Storage: html
SPA mode: false
Title: My Site
Description: A landing page for My Site
Favicon: ⚡
Created: 2026-03-01T10:30:00Z
Updated: 2026-03-01T14:22:00ZFields
| Field | Description |
|---|---|
id | Unique deployment identifier |
slug | URL slug (subdomain) |
url | Full live URL |
status | active or deleted |
storage_type | html (single file) or files (multi-file) |
is_spa | Whether 404→index.html fallback is enabled |
title | Page title |
description | Meta description |
favicon | Favicon emoji |
created_at | ISO 8601 timestamp of initial deploy |
updated_at | ISO 8601 timestamp of last update |
Example
User prompt:
"What's the status of my project page?"
What Claude does:
- Calls
get_statuswith the deployment ID. - Returns the URL, storage type, SPA mode, and timestamps.
Notes
- The
statusfield indicates whether the deployment is active. Deleted deployments returnstatus: "deleted". - Claude frequently calls this tool internally before updating or tearing down a deployment to confirm the correct target.
- Use
list_deploysto find deployment IDs when you don't have them handy.