get_all_schedules
Retrieve all scheduled workflows from Alteryx Server to monitor and manage automated task execution.
Instructions
Get the list of all schedules of the Alteryx server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.py:589-595 (handler)The core handler function in the AlteryxTools class that retrieves all schedules from the Alteryx server API using schedules_api.schedules_get_schedules() and returns a pretty-formatted response or error message.def get_all_schedules(self): """Get the list of all schedules of the Alteryx server""" try: api_response = self.schedules_api.schedules_get_schedules() return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
- src/mcp_server.py:305-307 (registration)MCP tool registration in the register_tools method using @self.app.tool() decorator, which creates a wrapper function that delegates execution to the underlying tools instance's get_all_schedules method.def get_all_schedules(): """Get the list of all schedules of the Alteryx server""" return self.tools.get_all_schedules()