Skip to main content
Glama

get_all_schedules

Retrieve all workflow schedules from the Alteryx server using the AYX-MCP-Wrapper. Streamline schedule management and access comprehensive scheduling data with this tool.

Instructions

Get the list of all schedules of the Alteryx server

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that retrieves all schedules from the Alteryx server API using schedules_api.schedules_get_schedules() and returns a pretty-formatted response or error.
    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 using @self.app.tool() decorator. This wrapper function delegates the call to the underlying tools instance's get_all_schedules method.
    @self.app.tool() 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