Skip to main content
Glama

aidelly_create_draft

Create a draft — saved as work-in-progress content that never publishes. The draft_planned_for field is a planning date only. Existing API keys need the new drafts:write scope added to gain draft access; no implicit grant occurs. Requires platform or a non-empty platforms array.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoOptional body override for endpoints with sparse parameter schemas.
textYesDraft content / caption.
queryNoOptional query overrides for endpoints with sparse parameter schemas.
titleNoDraft title (optional).
brand_idNo
platformNoPrimary platform (e.g., "twitter", "instagram"). Provide `platform` or a non-empty `platforms` array — one of the two is required.
platformsNoList of platforms (optional, normalizes "x" to "twitter").
draft_kindNoDraft composition type (default "post").
media_urlsNoMedia URLs (optional).
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
draft_planned_forNoISO 8601 date/time for calendar placement (optional, does not schedule).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changed
    • changedInput schema / properties / draft_kind / description
      Previous value: -"Draft composition type (default 'post')."New value: +"Draft composition type (default \"post\")."
    • changedInput schema / properties / draft_planned_for / description
      Previous value: -"ISO 8601 date/time for calendar placement (optional; does not schedule)."New value: +"ISO 8601 date/time for calendar placement (optional, does not schedule)."
    • changedInput schema / properties / platform / description
      Previous value: -"Primary platform (e.g., 'twitter', 'instagram'). Provide `platform` or a non-empty `platforms` array — one of the two is required."New value: +"Primary platform (e.g., \"twitter\", \"instagram\"). Provide `platform` or a non-empty `platforms` array — one of the two is required."
    • changedInput schema / properties / platforms / description
      Previous value: -"List of platforms (optional; normalizes 'x' to 'twitter')."New value: +"List of platforms (optional, normalizes \"x\" to \"twitter\")."
  2. Added

TDQS

A4.4/5.0
Behavior5/5

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

The description adds significant behavioral context beyond the annotations: drafts are saved but never publish, draft_planned_for is a planning date only (not a scheduler), and API keys require explicit drafts:write scope with no implicit grant. These details are not present in the annotations and help the agent understand side effects and prerequisites.

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

Conciseness5/5

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

The description is three sentences, each adding distinct value: the core purpose, a field clarification, and authorization/input requirements. It is front-loaded with the primary purpose and contains no redundant or filler text.

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

Completeness4/5

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

For a create tool with 12 parameters and no output schema, the description covers essential behavior (never publishes), clarifies a potentially confusing field (draft_planned_for), and highlights the critical auth scope requirement. It does not mention workspace_id requirements, but that is documented in the schema. The lack of return-value description is acceptable given the absence of an output schema, but the description is not exhaustive.

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

Parameters3/5

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

Schema description coverage is 83%, and the schema already documents the key parameters (platform, platforms, draft_planned_for, workspace_id, etc.). The description only restates constraints already in the schema, such as the platform/platforms requirement and the non-scheduling nature of draft_planned_for, without adding new parameter-level semantics.

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

Purpose5/5

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

The description clearly states the verb ('Create') and resource ('draft'), and the phrase 'never publishes' strongly distinguishes it from sibling tools like create_post and create_scheduled_post. This makes the tool's purpose unambiguous.

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

Usage Guidelines4/5

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

The description provides useful usage context: drafts are work-in-progress and never publish, so this tool is appropriate for non-publishing content. It also specifies critical prerequisites (platform/platforms requirement, drafts:write scope). However, it does not explicitly name alternative tools for publishing scenarios, though the 'never publishes' phrase implies the exclusion.

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.

TDQS

C2.2/5.0
Disambiguation2/5

Many tools have overlapping purposes, especially in approvals and post updates. For example, aidelly_action_post_approval and aidelly_post_approvals_id_action both handle approval actions, while aidelly_get_approvals and aidelly_list_pending_approvals appear to serve similar listing functions. The proliferation of HTTP-route-style names with generic prefixes (get_approvals_id, patch_posts_id) further obscures distinctions.

Naming Consistency1/5

The tool set mixes clean verb_noun names (create_post, list_posts) with HTTP-method-plus-path names (get_approvals_id, patch_posts_id, post_analytics_insights). There is no consistent pattern, and 'post' as a verb collides with the content post noun, creating confusion. The inconsistent conventions make it hard to predict tool names.

Tool Count1/5

With 124 tools, this server vastly exceeds the typical MCP server scope and the calibration threshold (50+ is extreme). Even for a comprehensive platform API, such a large surface overwhelms agents and makes selection impractical. The count is a severe mismatch for a usable MCP tool set.

Completeness4/5

The tool surface is remarkably comprehensive, covering CRUD for posts, drafts, scheduled posts, tasks, reports, webhooks, workspaces, e-commerce stores, and many more. Advanced features like approvals, repurpose jobs, and content automations are also represented. Minor gaps exist (e.g., no explicit delete for regular posts, only cancel), but the domain is well covered overall.