Skip to main content
Glama

Identify symbolic link

termix_files_identify_symbolic_link
Read-onlyIdempotent

Resolve a symbolic link by specifying its path to identify the target file or directory it points to.

Instructions

Identify symbolic link. Identifies the target of a symbolic link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered by structured metadata. The description does add a useful behavioral fact: the tool resolves/reports the symlink target rather than file contents. However, it does not disclose behavior for broken symlinks, relative versus absolute targets, or the return format, so the added transparency is modest.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and readable, but the first sentence, 'Identify symbolic link,' simply repeats the tool title. All useful content is in the second sentence, so the first sentence does not earn its place. It could be tightened to one sentence such as 'Returns the target of a symbolic link.'

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?

For a simple read-only lookup with annotations already covering safety, the core purpose is adequately communicated. However, with no output schema and no parameter descriptions, an agent is left guessing about the response shape and edge-case behavior such as what happens when the path is not a symbolic link. The description is adequate but has clear gaps.

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 description coverage is 0%, and the description never mentions the two required parameters, path and sessionId. The term 'symbolic link' gives an implicit clue that `path` refers to the link being inspected, but no detail about sessionId or how the path is interpreted is provided. The description does not compensate for the schema's missing parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The second sentence, 'Identifies the target of a symbolic link,' provides a concrete outcome and distinguishes this tool from sibling file operations like reading files, listing directories, or resolving environment variables. The first sentence merely restates the tool name/title, which slightly weakens the clarity. Overall, the core purpose is clear and specific enough for an agent to understand what this tool does.

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?

The description provides no explicit guidance on when to use this tool versus siblings such as termix_files_read_file, termix_files_list_files_directory, or termix_files_resolve_path_environment_variables. It does not mention prerequisites, exclusions, or alternatives. The only usage signal is implied by the phrase 'target of a symbolic link.'

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

Deploy Server

Other Tools