Skip to main content
Glama

Prefect MCP Server

update_work_queue

Modify a Prefect work queue's settings including name, description, paused status, and concurrency limit to control workflow execution behavior.

Instructions

Update a work queue.

Args: work_queue_id: The work queue UUID name: New name description: New description is_paused: New paused status concurrency_limit: New concurrency limit

Returns: Details of the updated work queue

Input Schema

NameRequiredDescriptionDefault
concurrency_limitNo
descriptionNo
is_pausedNo
nameNo
work_queue_idYes

Input Schema (JSON Schema)

{ "properties": { "concurrency_limit": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Concurrency Limit" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Description" }, "is_paused": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Is Paused" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Name" }, "work_queue_id": { "title": "Work Queue Id", "type": "string" } }, "required": [ "work_queue_id" ], "type": "object" }

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