Skip to main content
Glama

linear_createComment

Add comments to Linear issues, projects, initiatives, updates, or document content, with Markdown support, threaded replies, and inline quotes.

Instructions

Add a comment to an issue, project, initiative, update, document content, or as a threaded reply

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesText of the comment (Markdown supported)
postIdNoID of the post to comment on
issueIdNoID or identifier of the issue to comment on (e.g., ABC-123)
parentIdNoID of the parent comment to reply to (for threaded comments)
projectIdNoID of the project to comment on
quotedTextNoOptional quoted text for inline comments
initiativeIdNoID of the initiative to comment on
subscriberIdsNoOptional user IDs to subscribe to the comment target
projectUpdateIdNoID of the project update to comment on
documentContentIdNoID of the document content to anchor an inline comment to
initiativeUpdateIdNoID of the initiative update to comment on

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
urlNo
bodyNo
userNo
issueNo
projectNo
parentIdNo
createdAtNo
updatedAtNo
initiativeNo
projectUpdateNo
initiativeUpdateNo

Schema Changelog

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

  1. Changed1 schema field changedv1.4.2
    • changedOutput schema / properties / url / type
      Previous value: -"string"New value: +[
      +  "string",
      +  "null"
      +]
  2. Changed10 schema fields changedv1.4.1
    • addedInput schema / properties / documentContentId
      Added value: +{
      +  "description": "ID of the document content to anchor an inline comment to",
      +  "type": "string"
      +}
    • addedInput schema / properties / initiativeId
      Added value: +{
      +  "description": "ID of the initiative to comment on",
      +  "type": "string"
      +}
    • addedInput schema / properties / initiativeUpdateId
      Added value: +{
      +  "description": "ID of the initiative update to comment on",
      +  "type": "string"
      +}
    • addedInput schema / properties / postId
      Added value: +{
      +  "description": "ID of the post to comment on",
      +  "type": "string"
      +}
    • addedInput schema / properties / projectId
      Added value: +{
      +  "description": "ID of the project to comment on",
      +  "type": "string"
      +}
    • addedInput schema / properties / projectUpdateId
      Added value: +{
      +  "description": "ID of the project update to comment on",
      +  "type": "string"
      +}
    • addedInput schema / properties / quotedText
      Added value: +{
      +  "description": "Optional quoted text for inline comments",
      +  "type": "string"
      +}
    • addedInput schema / properties / subscriberIds
      Added value: +{
      +  "description": "Optional user IDs to subscribe to the comment target",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "issueId",
      -  "body"
      -]New value: +[
      +  "body"
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "body": {
      +      "type": "string"
      +    },
      +    "createdAt": {
      +      "type": "string"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "initiative": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    },
      +    "initiativeUpdate": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    },
      +    "issue": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    },
      +    "parentId": {
      +      "type": "string"
      +    },
      +    "project": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    },
      +    "projectUpdate": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    },
      +    "updatedAt": {
      +      "type": "string"
      +    },
      +    "url": {
      +      "type": "string"
      +    },
      +    "user": {
      +      "type": [
      +        "object",
      +        "null"
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
  3. Changed1 schema field changedv1.0.0
    • addedInput schema / properties / parentId
      Added value: +{
      +  "description": "ID of the parent comment to reply to (for threaded comments)",
      +  "type": "string"
      +}
  4. First observed

TDQS

B3.4/5.0
Behavior2/5

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

Annotations are all false (no readOnlyHint, no idempotency, no destructiveness), providing no safety profile. The description carries the burden but adds no behavioral detail: it does not mention that a comment is persistently created, that permissions may be required, or that notifications could fire. It only restates the action without consequences or side effects. This is a minimal disclosure for a write operation.

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 a single sentence, front-loaded with the action verb, and lists all valid target types efficiently. There is no redundant phrasing or empty filler. Every word contributes to the core purpose.

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

Completeness2/5

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

With 11 parameters and multiple optional target IDs, the description is critically incomplete. It never states that exactly one target identifier (issueId, projectId, etc.) or parentId is required, nor does it clarify which combinations are invalid. An agent could easily omit a target or provide multiple, leading to errors. The output schema exists but does not compensate for this missing invocation rule.

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 all 11 parameters are documented. The description adds value by enumerating the target resource types (issue, project, etc.), which clarifies which ID parameter to use, but it does not explain selection rules (e.g., exactly one target must be provided) or how parameters interact. This is baseline-level contribution given the schema already describes each 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?

The description clearly states the action 'Add a comment to' followed by a list of valid target resources (issue, project, initiative, update, document content, threaded reply). This is a specific verb+resource pattern that distinguishes it from sibling tools like linear_updateComment and linear_deleteComment. The purpose is unambiguous and immediately understood.

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

Usage Guidelines3/5

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

The description implies usage context (use this to create a comment), but it does not explicitly mention alternatives or when not to use it. It does not point to linear_updateComment or linear_deleteComment for editing/deleting. Since the verb 'Add' inherently separates creation from modification, the guidance is only implied, not explicit.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tacticlaunch/mcp-linear'

If you have feedback or need assistance with the MCP directory API, please join our Discord server