Skip to main content
Glama

reset_user_password

Reset passwords for Alteryx Server users by specifying their user ID to restore account access.

Instructions

Reset a user's password by their ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes

Implementation Reference

  • The core implementation of the reset_user_password tool. It checks if the user exists, calls the Alteryx API to reset the password, and returns the formatted response or error.
    def reset_user_password(self, user_id: str): """Reset a user's password by their ID""" try: user = self.users_api.users_get_user(user_id) if not user: return "Error: User not found" api_response = self.users_api.users_reset_user_password(user_id) return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
  • MCP tool registration using the @app.tool decorator, which exposes the tool and delegates execution to the underlying tools.reset_user_password method.
    @self.app.tool() def reset_user_password(user_id: str): """Reset a user's password by their ID""" return self.tools.reset_user_password(user_id)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jupiterbak/AYX-MCP-Wrapper'

If you have feedback or need assistance with the MCP directory API, please join our Discord server