You're viewing a demo portfolio

Join the waitlist
PRSM

aidelly_create_queue

Active

Tool of io.github.wilzer/aidelly

declared in 0.3.0

POST /queues — create a new content distribution queue with recurring weekly time slots.

Parameters schema

{
  "type": "object",
  "required": [
    "idempotency_key",
    "name",
    "slots"
  ],
  "properties": {
    "body": {
      "type": "object",
      "description": "Optional body override for endpoints with sparse parameter schemas.",
      "additionalProperties": true
    },
    "name": {
      "type": "string",
      "maxLength": 255,
      "minLength": 1,
      "description": "Queue name"
    },
    "query": {
      "type": "object",
      "description": "Optional query overrides for endpoints with sparse parameter schemas.",
      "additionalProperties": true
    },
    "slots": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "weekday",
          "hour",
          "minute"
        ],
        "properties": {
          "hour": {
            "type": "integer",
            "maximum": 23,
            "minimum": 0
          },
          "minute": {
            "type": "integer",
            "maximum": 59,
            "minimum": 0
          },
          "weekday": {
            "type": "integer",
            "maximum": 6,
            "minimum": 0,
            "description": "0=Sunday through 6=Saturday"
          }
        }
      },
      "minItems": 1,
      "description": "Time slots when queue should post"
    },
    "brand_id": {
      "type": "string"
    },
    "channels": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "platform"
        ],
        "properties": {
          "platform": {
            "type": "string"
          },
          "accountId": {
            "type": "string",
            "description": "Optional; platform-specific account ID"
          }
        }
      },
      "description": "Channels to post to from this queue"
    },
    "timezone": {
      "type": "string",
      "description": "IANA timezone ID for slot times (e.g. America/New_York)"
    },
    "workspace_id": {
      "type": "string",
      "format": "uuid",
      "description": "Workspace to operate in. Do not ask the user for this UUID — call aidelly_list_workspaces and use the `id` of the matching workspace. Optional for read operations; required when creating content."
    },
    "idempotency_key": {
      "type": "string"
    }
  },
  "additionalProperties": false
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

io.github.wilzer/aidelly

https://github.com/Aidelly/claude-plugin

1/7 registries
View full server →
aidelly_create_queue — io.github.wilzer/aidelly — PRSM MCP