get_status
Get the status of a deployment including its URL, submission count, and metadata.
Annotations
| Annotation | Value |
|---|---|
readOnlyHint | true |
destructiveHint | false |
idempotentHint | false |
openWorldHint | true |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The 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:00ZExample
User prompt:
How many signups does my Acme waitlist have?
What Claude does:
- Calls
get_statuswith the deploymentid. - Reads the
submission_countfield from the response. - 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
statusfield indicates whether the deployment is currentlyactiveor has been torn down. - Claude often calls this tool internally before performing updates or teardowns to confirm it has the right deployment.