Skip to main content
Glama

resume_deployment_schedule

Restart a paused deployment schedule in Prefect workflow automation to resume automated flow executions based on the defined schedule.

Instructions

Resume a deployment's schedule.

Args: deployment_id: The deployment UUID

Returns: Confirmation message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deployment_idYes

Implementation Reference

  • The primary handler implementation for the 'resume_deployment_schedule' MCP tool. Decorated with @mcp.tool for automatic registration. Input schema defined by function arguments (deployment_id: str). Executes Prefect client call to resume the deployment schedule and returns a text confirmation message.
    @mcp.tool async def resume_deployment_schedule( deployment_id: str, ) -> List[Union[types.TextContent, types.ImageContent, types.EmbeddedResource]]: """ Resume a deployment's schedule. Args: deployment_id: The deployment UUID Returns: Confirmation message """ async with get_client() as client: await client.resume_deployment_schedule(UUID(deployment_id)) return [types.TextContent(type="text", text=f"Schedule for deployment '{deployment_id}' resumed successfully.")]

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/allen-munsch/mcp-prefect'

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