Skip to main content
Glama

runrunit_comment_reaction

Add an emoji reaction to a comment in Runrun.it to quickly express feedback or acknowledgment on project tasks.

Instructions

Add a reaction (emoji) to a comment on Runrun.it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emojiYesEmoji character (e.g. 👍)
comment_idYesComment ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.1

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations, the description must carry the burden of behavioral disclosure, but it only states the primary action. It does not mention whether adding the same emoji twice creates duplicates or is idempotent, whether an existing reaction is replaced, or what happens if the comment does not exist.

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?

A single, front-loaded sentence contains only the essential action and resource. No filler or repeated schema information.

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?

The tool is simple and the schema fully documents its two parameters, so the description is nearly sufficient. However, with no annotations and no output schema, it leaves open behavioral questions like idempotency and failure behavior, making it only minimally complete.

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 coverage is 100%, and both parameters already have clear descriptions (comment_id as number, emoji as character with example). The description adds no new semantic detail beyond the schema, so the baseline score of 3 applies.

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?

Description uses a specific verb ('Add') and resource ('reaction...to a comment on Runrun.it'), making the operation unambiguous. It distinguishes this from sibling comment tools (get/create/update/delete_comment) by naming the emoji-reaction action.

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 is given about when to choose this tool over alternatives, such as updating a comment or creating a reaction via another endpoint. The context is implied only by the description and schema, with no explicit exclusions or preconditions.

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