Skip to main content

calseta://workflows

Returns all active workflows with their documentation. Example response:
[
  {
    "uuid": "wf-abc123-...",
    "name": "Revoke User Session",
    "state": "active",
    "documentation": "## Overview\nRevokes all active sessions for a compromised user...",
    "approval_mode": "always",
    "risk_level": "high"
  }
]
Token optimization: Only active workflows are returned. Code is excluded — agents receive documentation describing what the workflow does and when to trigger it, not implementation details.

calseta://workflows/

Returns a single workflow with full documentation. URI parameters:
ParameterTypeDescription
uuidstringThe workflow’s unique identifier
Example response:
{
  "uuid": "wf-abc123-...",
  "name": "Revoke User Session",
  "state": "active",
  "documentation": "## Overview\nRevokes all active sessions for a compromised user account.\n\n## When to Use\n- User account shows signs of compromise\n- Impossible travel detected\n- Credential exposure confirmed\n\n## What It Does\n1. Revokes all OAuth tokens\n2. Terminates active sessions\n3. Forces password reset",
  "approval_mode": "always",
  "risk_level": "high"
}

Required Scope

workflows:read