Skip to main content
Glama

ping

Read-onlyIdempotent

Verify connectivity and credentials against the Nextcloud Notes API, returning the configured server, user, and notes folder settings.

Instructions

Verify connectivity and credentials against the Nextcloud Notes API. Returns the configured server, user and the notes folder settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint, so the safety profile is fully covered. The description adds genuine value beyond that by disclosing what the call returns (configured server, user, notes folder settings), which is the main behavioral detail an agent would want given there is no output schema.

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 tight sentences: the purpose first, the return contents second. No filler, no restatement of the title or annotations.

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 zero-parameter diagnostic with no output schema, the description covers purpose, behavior, and a summary of the return shape adequately. A brief note on expected outcomes or failure modes (e.g. what an auth failure looks like) would make it fully complete.

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 takes no parameters, so the baseline of 4 applies. The description correctly describes a zero-input call and adds return-value context rather than misrepresenting any inputs.

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?

States a specific verb+resource: 'Verify connectivity and credentials against the Nextcloud Notes API', which is clearly a diagnostic/health-check operation. It is distinguishable from the mutation siblings, though it does not explicitly distinguish itself from get_settings, whose territory (server/user/folder settings) overlaps with what this tool returns.

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

Usage Guidelines3/5

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

Usage is implied rather than stated: verifying connectivity and credentials is naturally a pre-flight/health-check call, but the description never says when to call it or how it differs from get_settings. No prerequisites or exclusions are given.

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