ping
Check if the WeftCut MCP server is alive; a response of 'pong' confirms it is reachable.
Instructions
Liveness check. Returns 'pong' to confirm the WeftCut MCP server is reachable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Check if the WeftCut MCP server is alive; a response of 'pong' confirms it is reachable.
Liveness check. Returns 'pong' to confirm the WeftCut MCP server is reachable.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.9Input schema / $schemaRemoved value: -"https://json-schema.org/draft/2020-12/schema"Input schema / descriptionRemoved value: -"Empty arg shape for tools that take no parameters. The dispatch table\ndeserializes `{}` (or any object) into this; `schemars` advertises it as an\nempty object schema."Input schema / titleRemoved value: -"EmptyArgs"v0.1.8Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description adds the precise return value ('pong'). This is sufficient for a tool with no parameters and no side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The core purpose and expected response are front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless liveness check with no output schema, the description fully covers what an agent needs to know: what it does, what it returns, and why it exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there are no semantics to clarify. The baseline of 4 applies because the description needs to compensate for nothing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific purpose: a liveness check that returns 'pong' to confirm server reachability. It is unambiguous and distinct from all sibling tools, which perform media or project operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: whenever confirmation of server reachability is needed. It doesn't explicitly exclude alternatives, but no alternative liveness check exists among the siblings, so the usage context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.