Skip to main content
Glama

pause_deployment_schedule

Pause the automated schedule of a Prefect deployment to temporarily halt workflow execution without deleting the deployment configuration.

Instructions

Pause a deployment's schedule.

Args: deployment_id: The deployment UUID

Returns: Confirmation message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deployment_idYes

Implementation Reference

  • The handler function for the 'pause_deployment_schedule' MCP tool. It is decorated with @mcp.tool for registration and implements pausing the schedule of a Prefect deployment by calling the Prefect client's pause_deployment_schedule method.
    @mcp.tool async def pause_deployment_schedule( deployment_id: str, ) -> List[Union[types.TextContent, types.ImageContent, types.EmbeddedResource]]: """ Pause a deployment's schedule. Args: deployment_id: The deployment UUID Returns: Confirmation message """ async with get_client() as client: await client.pause_deployment_schedule(UUID(deployment_id)) return [types.TextContent(type="text", text=f"Schedule for deployment '{deployment_id}' paused 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