status

Display a full overview of your account, forms, and destinations.

npx formdata-dev status

Output

Account Status ────────────── Organization: Acme Corp Subdomain: acme.formdata.dev API URL: https://api.formdata.dev Forms: 2 total (2 enabled, 0 disabled) Contact Form (contact) — enabled Public key: pk_abc123... Endpoint: POST https://api.formdata.dev/v1/f/pk_abc123... Destinations: 1 smtp [email protected] Feedback (feedback) — enabled Public key: pk_def456... Endpoint: POST https://api.formdata.dev/v1/f/pk_def456... Destinations: 1 webhook https://hooks.slack.com/...

What It Shows

For each form, the status command displays:

  • Form name and slug with enabled/disabled status
  • Public key for submissions
  • Full submission endpoint URL
  • Destination count with type and target details:
    • webhook -- the target URL
    • smtp -- the recipient email addresses
    • google_sheets_webhook -- the webhook URL

No Forms

If no forms exist, you see:

No forms yet. Run npx formdata-dev forms create

Requirements

Requires valid credentials. Run init first.

TIP

The MCP equivalents are get_account and list_forms. Use get_form to inspect a single form with its destinations.