Skip to main content
Glama

remove_schedule_from_collection

Remove a scheduled workflow from an Alteryx collection by specifying both collection and schedule IDs. This tool helps manage automated workflow execution within collections.

Instructions

Remove a schedule from a collection by its ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collection_idYes
schedule_idYes

Implementation Reference

  • The core handler function that implements the tool logic: validates collection and schedule existence, calls the Alteryx collections API to remove the schedule, and returns the formatted API response.
    def remove_schedule_from_collection(self, collection_id: str, schedule_id: str): """Remove a schedule from a collection by its ID""" try: collection = self.collections_api.collections_get_collection(collection_id) if not collection: return "Error: Collection not found" schedule = self.schedules_api.schedules_get_schedule(schedule_id) if not schedule: return "Error: Schedule not found" api_response = self.collections_api.collections_remove_schedule_from_collection(collection_id, schedule_id) return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"
  • MCP server tool registration decorator that exposes the handler as an MCP tool and delegates execution to the tools instance method.
    @self.app.tool() def remove_schedule_from_collection(collection_id: str, schedule_id: str): """Remove a schedule from a collection by its ID""" return self.tools.remove_schedule_from_collection(collection_id, schedule_id)
  • Tool description in the system prompt defining the tool's purpose.
    - remove_schedule_from_collection: Remove a schedule from a collection

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