Skip to main content
Glama

follow_link

Follow (server-side GET) a link extracted from a message — the 'click the verification link' step without leaving the conversation. Defaults to the first verify-classed link; pass class, index, or an exact url to pick another. Redirects are followed (SSRF-guarded, https-only, max 5). Returns {requested_url, final_url, status, redirects, ok} — the target's response body is never returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoFollow this exact URL (must be one of the message's extracted links). At most one of url, class, index.
classNoFollow the first link of this class: verify | reset | unsubscribe | other. Default when nothing is passed: verify.
indexNoFollow the link at this zero-based index of the extracted links.
message_idYesMessage id (uuid) whose extracted link to follow.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Without annotations, the description discloses key behavioral traits: SSRF-guarded, https-only, max 5 redirects, and that the response body is never returned. It also explains default behavior (first verify-classed link). Minor omission: no mention of error handling or timeout behavior.

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 efficient paragraph with no redundancy. It is front-loaded with the main purpose, followed by selection options, then safety and return format. Every sentence adds 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?

Given no output schema, the description provides the return object structure. It covers selection, safety, and behavior. It is slightly incomplete: missing error scenarios (e.g., invalid URL, timeout) or what happens when no link matches the criteria. Otherwise thorough.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds meaning beyond schema: explains the default for 'class' (verify), mutual exclusivity among url/class/index, and details about the return object's fields. This helps the agent understand parameter interaction and expected output.

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 tool follows a link server-side ('Follow (server-side GET) a link extracted from a message'), specifies the typical use case ('click the verification link'), and distinguishes from siblings like 'get_links' (list only) and 'follow_sms_link' (follow SMS link).

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?

It provides context for when to use ('click the verification link' step) and explains how to select alternative links via class, index, or exact URL. It does not explicitly list when not to use or mention alternatives, but the guidance is clear for typical use.

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