Skip to content

get_status

Get the status of a deployment including its URL, submission count, and metadata.

Annotations

AnnotationValue
readOnlyHinttrue
destructiveHintfalse
idempotentHintfalse
openWorldHinttrue

Parameters

NameTypeRequiredDescription
idstringYesThe deployment ID to check

Return format

Returns deployment metadata as structured text:

Deployment dep_abc123

Slug: acme-waitlist
URL: https://acme-waitlist.invoker.page
Status: active
Submissions: 42
Created: 2025-06-15T10:30:00Z
Updated: 2025-06-18T14:22:00Z

Example

User prompt:

How many signups does my Acme waitlist have?

What Claude does:

  1. Calls get_status with the deployment id.
  2. Reads the submission_count field from the response.
  3. Tells you the current number of submissions and when the deployment was last updated.

Notes

  • The submission count is a total count. To see the actual submission data, use get_submissions.
  • The status field indicates whether the deployment is currently active or has been torn down.
  • Claude often calls this tool internally before performing updates or teardowns to confirm it has the right deployment.

Deploy forms and sites from AI conversations.