List Accounts
account_listList all signed-in Microsoft accounts, returning usernames, account IDs, and account types (personal or work/school). Read-only operation.
Instructions
📖 List all signed-in Microsoft accounts (read-only, safe for unsupervised use)
Returns a list of authenticated Microsoft accounts with their usernames, account IDs, and account types (personal or work/school).
Returns: List of account dictionaries with: - username: Account email/username - account_id: Unique account identifier - account_type: "personal", "work_school", or "unknown"
Example: [ { "username": "user@outlook.com", "account_id": "abc123...", "account_type": "personal" }, { "username": "user@contoso.com", "account_id": "def456...", "account_type": "work_school" } ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |