Skip to main content
Glama

AfterLaunch: the agentic growth marketing engine

propose_move

Put a discussion thread you found onto the founder's growth board as a pending move. WHEN: you have read a thread on a community they work (a subreddit, Hacker News, a forum) that the board does not carry, and can say why it is worth their twenty minutes. It lands at the tail of the board, keyed to the thread so a repeat lands on one row, and comes back with its posture: on Reddit or Hacker News that is draft_only, meaning you draft and the founder posts, and you must never post there yourself. Only community_reply and community_answer. Free; 'act' scope; a fixed number a day. A thread already on the board hands back its existing move id. WHAT COMES BACK: the move id and posture, so you can save a draft with update_draft next.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
whyYesWhy it is worth their time, in one or two sentences.
kindYescommunity_answer for a question thread; otherwise community_reply.
draftNoOptional: your drafted reply.
titleYesThe thread, as the founder would name it.
targetYesThe https address of the thread itself.
sourcesNoOptional: up to five https addresses behind the why.

TDQS

A4.4/5.0
Behavior5/5

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

With only readOnlyHint=false and destructiveHint=false in the annotations, the description carries the behavioral burden and exceeds it: tail-of-board placement, thread-keyed dedup onto one row, the draft_only posture on Reddit/Hacker News, an absolute prohibition on posting to those communities, a per-day quota, and idempotent return of an existing move id. This is far more than the annotations alone convey.

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

Conciseness4/5

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

Purpose is front-loaded in the first sentence, followed by a labeled WHEN section and a WHAT COMES BACK section. Roughly 150 words for a 6-parameter mutation tool with dedup, posture, and quota rules is justified, though the middle sentence is dense and slightly run-on.

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

Completeness5/5

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

Because there is no output schema, the description correctly takes responsibility for return values ('the move id and posture') and covers the key edge case (already-on-board returning the existing id). Constraints (never post, quota, draft_only) and the follow-up step (update_draft) are all present. Nothing essential is missing for correct invocation.

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 100%, so each parameter is already documented (title naming, why length, kind enum, target address, draft, sources). The description adds modest color — relating kind to the draft_only posture and why to the 'twenty minutes' framing — but does not meaningfully extend per-parameter meaning. Baseline 3 is appropriate.

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 opening sentence names a specific verb and resource: 'Put a discussion thread you found onto the founder's growth board as a pending move.' This clearly separates propose_move from the move-lifecycle siblings (ship_move, skip_move, archive_move, undo_move, get_move) by anchoring on the 'pending' state, and the draft_only posture further pins down its role versus the founder-posting tools.

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?

An explicit WHEN clause states the trigger: a thread the board does not already carry, read on a community the founder works, with a reason it is worth their time. The dedup line ('A thread already on the board hands back its existing move id') implies the when-not case, and update_draft is named as the follow-up. However, it never explicitly contrasts this tool with related siblings such as ship_move or skip_move, so the guidance stops short of a full 5.

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

A3.9/5.0
Disambiguation4/5

Most tools follow a clear action+resource pattern (get_, list_, set_, ship_, etc.) with distinct purposes. A few boundaries could cause confusion, such as get_move vs get_output (both return drafts) and ship_move vs set_output_status (both mark things shipped), though descriptions mitigate this sufficiently.

Naming Consistency4/5

The overwhelming majority use consistent snake_case verb_noun naming (list_feed, ship_move, get_visibility). The only outlier is 'whoami', a common convention but not verb_noun; otherwise the pattern is highly predictable.

Tool Count2/5

At 41 tools, the surface is well over the 25-tool threshold for 'too many'. While the domain is broad, this volume places significant cognitive load on agents and suggests some consolidation or modularization could help.

Completeness3/5

Core workflows for moves and outputs are covered (create/list/get/update/ship/skip/undo). However, the tool descriptions reference 'approve_output' as the publishing action, yet that tool is absent from the list, leaving a dead end for channel distribution. There are also no tools for editing competitors or managing Memory pages beyond recording insights.