Skip to main content
Glama

Add a comment

add_comment
Destructive

MUTATES Parabol data: add a comment to a meeting discussion thread. Required: content (stringified TipTap/ProseMirror JSON document), discussionId, threadSortOrder (Int). Optionally isAnonymous or threadParentId (to reply). Parabol GraphQL: addComment(comment) → union. Requires COMMENTS_WRITE.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsNoAdditional documented GraphQL input fields to send verbatim in this mutation's input (merged OVER the typed fields above).
contentYesComment body as a stringified TipTap/ProseMirror JSON document (required).
isAnonymousNoPost the comment anonymously.
discussionIdYesThe discussion (meeting thread) id (required).
threadParentIdNoParent comment id, to post a threaded reply.
threadSortOrderNoPosition within the thread (Int). Defaults to 0.

Schema Changelog

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

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Says upfront that it mutates data and requires COMMENTS_WRITE, adding useful permission and side-effect context beyond the destructiveHint annotation. The mutation framing is consistent with annotations, so there is no contradiction.

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?

Two sentences pack the core action, required and optional fields, GraphQL operation, and permission requirement without fluff. Each clause earns its place, and the mutation marker is front-loaded.

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

Completeness3/5

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

Names all relevant parameters and the permission requirement, but with no output schema, 'addComment(comment) → union' is thin for understanding success/error results. The incorrect required-parameter claim also adds ambiguity that keeps it from being fully complete.

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?

Schema coverage is 100%, so the baseline is 3; however, the description largely repeats schema field descriptions and adds a harmful inconsistency by listing threadSortOrder as required even though the schema marks it optional with a default of 0. This can mislead an agent into sending or requiring an unnecessary parameter.

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?

States an explicit action ('add a comment') and target ('meeting discussion thread'), and flags the operation as 'MUTATES Parabol data'. This clearly differentiates it from siblings like create_task, create_reflection, and generic parabol_graphql.

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?

Clear context: use when posting a comment to a Parabol meeting discussion, optionally as a threaded reply or anonymous. It does not explicitly name alternatives or state when not to use it, so it stops short of a 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

A4/5.0
Disambiguation5/5

Every tool targets a distinct resource and action: get_/list_ tools are clearly separate read paths, create_/update_/start_/add_ tools map to distinct mutations, and the two escape hatches are explicitly labeled. Even near neighbors like list_meetings and list_active_meetings are unambiguous.

Naming Consistency4/5

Most tools follow a consistent pattern: list_/get_ for reads, create_/update_/start_ for mutations, with plural nouns for collections and singular for single resources. Minor deviations like add_comment, invite_to_team, and the parabol_* escape hatches prevent a perfect score.

Tool Count3/5

With 21 tools, the server sits in the 16-25 range that feels heavy for an MCP surface. The breadth is somewhat justified because Parabol spans organizations, teams, meetings, tasks, and comments, but many tools are list/get variants of the same core entities.

Completeness3/5

Core read and write flows exist for teams, organizations, meetings, tasks, and comments, but there are notable lifecycle gaps such as no delete_task, no reflection update/delete, and no meeting end/update mutations. The parabol_graphql and parabol_query escape hatches help work around these gaps but do not make the curated surface fully complete.