Skip to main content
Glama
henrikogaard

jottacloud-mcp

by henrikogaard

get_file_info

Read-only

Get metadata for a Jottacloud file or folder without downloading it. Check size, type, and other details to understand the file before acting.

Instructions

Get metadata for a Jottacloud file or folder. Does not download content.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesAbsolute path, e.g. /Archive/docs/note.md

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds the useful behavioral detail that content is not downloaded, but it does not disclose what metadata fields are returned or how errors are handled.

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?

Two sentences with no wasted words. The main operation is front-loaded, the scope is stated, and the key distinction from content-retrieval tools is included.

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 simple one-parameter tool with full schema coverage and read-only annotations, the description is mostly complete. It would be slightly stronger if it summarized the kind of metadata returned, but that is a minor gap given the low complexity.

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?

The schema already fully documents the single path parameter with an example. The description adds meaning by clarifying that the path can refer to either a file or a folder and that only metadata, not content, is retrieved.

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: 'Get metadata for a Jottacloud file or folder.' It also explicitly notes that it does not download content, which separates it from the sibling read_file tool. This is clear and distinct.

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 context is clear: use this tool when you need metadata for a Jottacloud file or folder. The 'Does not download content' statement gives an implicit when-not-to-use signal relative to content-reading tools, though it does not name an explicit alternative.

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