Skip to main content
Glama

Prefect MCP Server

create_work_queue

Create a work queue to organize and manage workflow execution in Prefect, allowing control over queue behavior with options for pausing, concurrency limits, and descriptions.

Instructions

Create a work queue.

Args: name: The name for the work queue description: Optional description is_paused: Whether the queue should be paused upon creation concurrency_limit: Optional concurrency limit

Returns: Details of the created work queue

Input Schema

NameRequiredDescriptionDefault
concurrency_limitNo
descriptionNo
is_pausedNo
nameYes

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": { "title": "Name", "type": "string" } }, "required": [ "name" ], "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