Skip to main content
Glama

Check ZSpace NAS connection

zspace_check
Read-only

Checks if the ZSpace NAS proxy is reachable and returns storage pool capacity when connected. Call first to verify the proxy is online before file operations.

Instructions

Check whether the ZSpace NAS is reachable through the local desktop client proxy and, if so, return a summary of storage pools.

Call this first to verify the proxy at 127.0.0.1:13579 is online before running other file operations. Returns {"connected": true, "pools": [{name, total_tb, free_tb}]} when the NAS responds, or {"connected": false} when it does not. Never modifies NAS state.

Unlike zspace_pool_info, this is a connectivity probe that happens to include a pool summary; use pool_info when you only need capacity.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already include readOnlyHint and openWorldHint, but the description adds concrete behavioral detail: it reports both connected and disconnected outcomes, states it 'never modifies NAS state,' and specifies the exact proxy endpoint. This goes beyond what annotations alone convey and gives an agent confidence about side effects and result semantics.

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 compact and front-loaded: it opens with the core purpose, then gives usage timing, return format, safety note, and sibling differentiation in a logical order. No sentence is wasted, and the sibling contrast is placed at the end where it is least likely to obscure the primary instruction.

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 zero-parameter connectivity probe with an output schema present, the description is complete. It gives the endpoint, success and failure response shapes, a no-mutation guarantee, and when to call it. There is no missing information an agent would need to invoke the tool correctly.

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 tool has zero parameters, so the schema fully covers the parameter surface with 100% coverage. The description confirms the fixed target (127.0.0.1:13579) and return shape, which is sufficient; there is no parameter meaning left to explain.

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 — 'check whether the ZSpace NAS is reachable through the local desktop client proxy' — and explicitly differentiates the tool from zspace_pool_info by clarifying this is a connectivity probe with a pool summary. An agent can distinguish it from siblings without opening any schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use guidance: 'Call this first to verify the proxy at 127.0.0.1:13579 is online before running other file operations.' It also names the alternative and the condition for choosing it: 'use pool_info when you only need capacity.' This fully covers usage context and exclusions.

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