Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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}"
  • 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()

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