Skip to main content
Glama

Reach MCP

react_message

Idempotent

Add or remove an emoji reaction on a LinkedIn message. Set react=false to remove the reaction. message_urn is the message_urn returned by list_conversation_messages (e.g. urn:li:msg_message:(urn:li:fsd_profile:…,123456789)). emoji is a Unicode emoji character (e.g. 👍, ❤️). Pass conversation_linkedin_id to also mark the conversation as read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emojiYesUnicode emoji character (e.g. 👍, ❤️).
reactNoTrue to add the reaction, False to remove it.
account_idYesReach id of the LinkedIn account to act on, from list_accounts.
message_urnYesFull message URN to react to.
idempotency_keyNoOptional. A key you choose (a UUID is fine) that names this exact call. If you retry with the same key and the same arguments, the first call's result is returned and nothing is done twice on LinkedIn. Reusing a key with different arguments is refused. Keys expire after 24 hours.
conversation_linkedin_idNoConversation ID — when provided the conversation is marked as read.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
emojiNo
reactedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

The description clearly states the write operation (add or remove reaction), explains how to toggle the behavior, and discloses a side effect (marking the conversation as read). Annotations already flag idempotency, so the description adds meaningful behavioral detail without contradiction.

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?

The purpose is stated first and the supporting parameter guidance is brief and organized. It is not trimmed to one sentence but every clause adds practical value.

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 single-action mutation tool, it covers inputs, source of the key ID, and side effects. Missing explicit error/rate-limit info is not critical given annotations and schema.

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

Parameters4/5

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

Parameter descriptions in the schema are already detailed, and the tool description adds useful guidance on where message_urn comes from and how to remove a reaction. This goes slightly beyond the baseline for fully-schema-documented parameters.

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 states a specific verb and resource: 'Add or remove an emoji reaction on a LinkedIn message.' This clearly identifies the tool's function and distinguishes it from sibling conversation tools like archive_conversation or list_conversation_messages.

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 gives practical guidance by telling the agent that message_urn comes from list_conversation_messages and that setting react to false removes the reaction. It also notes the read side-effect when conversation_linkedin_id is passedhols, giving clear usage context without explicit exclusion of alternatives.

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.

Resources