Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
OKTA_ORG_URL | Yes | Your Okta organization URL (e.g., https://dev-123456.okta.com) | |
OKTA_API_TOKEN | Yes | Your Okta API token for authentication |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_user | Retrieve detailed user information from Okta by user ID |
list_users | List users from Okta with optional filtering and pagination |
create_user | Create a new user in Okta |
activate_user | Activate a user in Okta |
suspend_user | Suspend a user in Okta |
unsuspend_user | Unsuspend a user in Okta |
deactivate_user | Deactivate a user in Okta |
delete_user | Delete a user from Okta (must be deactivated first) |
get_user_last_location | Retrieve the last known location and login information for a user from Okta system logs |
list_groups | List user groups from Okta with optional filtering and pagination |
create_group | Create a new group in Okta |
get_group | Get detailed information about a specific group |
delete_group | Delete a group from Okta |
assign_user_to_group | Assign a user to a group in Okta |
remove_user_from_group | Remove a user from a group in Okta |
list_group_users | List all users in a specific group |
bulk_user_import | Import multiple users from a CSV string |
assign_users_to_groups | Assign multiple users to groups based on attributes |
provision_applications | Provision application access for multiple users |
run_onboarding_workflow | Run a complete onboarding workflow for multiple users from CSV data |