Skip to main content
Glama

aidelly_post_inbox_automations

POST /inbox/automations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoOptional body override for endpoints with sparse parameter schemas.
queryNoOptional query overrides for endpoints with sparse parameter schemas.
enabledNo
keywordNoRequired when triggerEvent is `comment`.
messageYes
brand_idNo
platformNoOptional. Derived from the selected account when omitted.
matchTypeNocontains
guardrailsNo
responseModeNotemplate
triggerEventNocomment
workspace_idNoWorkspace 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_keyYes
platformAccountIdYesInstagram account id or Facebook Page id from the workspace's connected accounts.
campaignDurationDaysNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed11 schema fields changed
    • addedInput schema / properties / campaignDurationDays
      Added value: +{
      +  "default": 30,
      +  "enum": [
      +    7,
      +    14,
      +    21,
      +    30
      +  ],
      +  "type": "integer"
      +}
    • addedInput schema / properties / enabled
      Added value: +{
      +  "default": true,
      +  "type": "boolean"
      +}
    • addedInput schema / properties / guardrails
      Added value: +{
      +  "properties": {
      +    "handoffKeywords": {
      +      "items": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "maxItems": 10,
      +      "type": "array"
      +    },
      +    "maxRepliesPerConversationPerDay": {
      +      "maximum": 10,
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "quietHours": {
      +      "properties": {
      +        "end": {
      +          "pattern": "^\\d{2}:\\d{2}$",
      +          "type": "string"
      +        },
      +        "start": {
      +          "pattern": "^\\d{2}:\\d{2}$",
      +          "type": "string"
      +        },
      +        "timezone": {
      +          "maxLength": 100,
      +          "minLength": 1,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "start",
      +        "end",
      +        "timezone"
      +      ],
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedInput schema / properties / keyword
      Added value: +{
      +  "description": "Required when triggerEvent is `comment`.",
      +  "maxLength": 100,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / matchType
      Added value: +{
      +  "default": "contains",
      +  "enum": [
      +    "contains"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / message
      Added value: +{
      +  "maxLength": 5000,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / platform
      Added value: +{
      +  "description": "Optional. Derived from the selected account when omitted.",
      +  "enum": [
      +    "instagram",
      +    "facebook"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / platformAccountId
      Added value: +{
      +  "description": "Instagram account id or Facebook Page id from the workspace's connected accounts.",
      +  "maxLength": 255,
      +  "minLength": 1,
      +  "type": "string"
      +}
    • addedInput schema / properties / responseMode
      Added value: +{
      +  "default": "template",
      +  "enum": [
      +    "template",
      +    "ai"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / triggerEvent
      Added value: +{
      +  "default": "comment",
      +  "enum": [
      +    "comment",
      +    "dm"
      +  ],
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "idempotency_key"
      -]New value: +[
      +  "idempotency_key",
      +  "platformAccountId",
      +  "message"
      +]
  2. Changed1 schema field changed
    • addedInput schema / properties / workspace_id / description
      Added value: +"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."
  3. First observed

TDQS

D1.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations (readOnlyHint=false, idempotentHint=false, destructiveHint=false) indicate a non-read, non-destructive, non-idempotent creation operation, and the description adds zero behavioral context beyond that. No mention of what gets created, side effects, authentication needs, or validation failures. The description carries none of the burden the annotations already partially cover.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

At one short line it is technically brief, but this is under-specification, not conciseness. There is no useful content to be concise about — the entire description is wasted on restating the HTTP method and path.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 15-parameter tool with nested guardrails objects, multiple enums, and no output schema, a one-line REST stub is severely inadequate. An agent cannot determine required relationships (e.g., keyword needed when triggerEvent is comment), how guardrails behave, or what the API returns. This is far below minimal viability for this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 40% schema coverage and 15 parameters including nested objects, the description should compensate but says nothing about any parameter. The schema itself documents only a few fields (platform, workspace_id, keyword, platformAccountId); the many other parameters like guardrails, campaignDurationDays, and responseMode rely entirely on schema names and enums. The description adds no clarifying value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description is simply 'POST /inbox/automations' — a REST path stub that restates the tool name without stating what the tool does. It gives no indication of what an inbox automation is, what creating one accomplishes, or how it differs from the many sibling tools. The title 'Post Inbox Automations' in annotations adds little beyond the name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The schema hints at triggerEvent (comment vs dm) and responseMode (template vs ai), but the description never states the intended use case, prerequisites (e.g., needing a connected platform account), or when a sibling like aidelly_patch_inbox_automations_id would be more appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.