Skip to main content
Glama

get_file

Read-onlyIdempotent

Get a file from SpaceTime Server storage. Returns text content directly or a download URL for binary files

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesFile path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml, docs/atom.xml, server/atom.xml, status/index.json)

Schema Changelog

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

  1. Changed1 schema field changed
    • changedInput schema / properties / path / description
      Previous value: -"File path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml, docs/atom.xml, server/atom.xml)"New value: +"File path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml, docs/atom.xml, server/atom.xml, status/index.json)"
  2. Changed1 schema field changed
    • changedInput schema / properties / path / description
      Previous value: -"File path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml)"New value: +"File path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml, docs/atom.xml, server/atom.xml)"
  3. Changed1 schema field changed
    • changedInput schema / properties / path / description
      Previous value: -"File path (e.g. host/Cealing-Host.json, blog/atom.xml)"New value: +"File path (e.g. host/Cealing-Host.json, center/atom.xml, blog/atom.xml)"
  4. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the agent knows it's a safe read. The description adds meaningful behavioral context by explaining that text files are returned as content directly, while binary files return a download URL. This goes beyond what annotations provide and helps set expectations for the response.

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 two concise sentences with no fluff. It front-loads the core purpose and adds one necessary behavioral detail. Every word earns its place.

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

Completeness5/5

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

For a simple read-only tool with one parameter and no output schema, the description is sufficient. It explains the two return modes (direct text vs. download URL), which is critical for the agent to know what to expect. No additional context is needed.

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?

The schema describes the 'path' parameter with examples and has 100% coverage, so the schema already carries the semantic weight. The description does not add any additional detail about the parameter, so the baseline score of 3 is appropriate.

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 retrieves a file from a specific storage system ('SpaceTime Server storage'), using the verb 'Get' and a defined resource. It also clarifies distinct behavior for text vs binary files. This clearly differentiates it from sibling tools like 'check_host' and 'search_host', which serve different purposes.

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 clear context: use this to retrieve files from SpaceTime Server storage. While it doesn't explicitly mention alternatives or exclusions, the sibling tools are clearly unrelated (host management, proxies), so the intended usage is unambiguous. No exclusions are needed for such a specific read operation.

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.

TDQS

A3.8/5.0
Disambiguation4/5

Most tools are distinct: proxy and file are separate from host tools. However, check_host and search_host both involve the Cealing Host, and an agent might confuse which to use for a domain lookup vs availability check, though descriptions clarify.

Naming Consistency5/5

All tools use snake_case with a verb_noun pattern (check_host, forward_proxy, generate_host, get_file, search_host). No mixed conventions, very consistent.

Tool Count5/5

Five tools is within the ideal range (3-15). Each tool serves a distinct purpose, and the count feels well-scoped for the server's apparent functionality.

Completeness2/5

The tool set lacks essential operations: no delete or update for host rules, no upload or list for files, and no config options for the proxy. These gaps would cause agent failures for common workflows.

Resources