Skip to main content
Glama

ping_blender

Verifies the socket connection to Blender, confirming the receiver is reachable before executing FX tasks.

Instructions

Check the socket connection to Blender. 블렌더 수신기와 연결되는지 확인한다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.6.0

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries full responsibility for behavioral disclosure. It only restates the tool's purpose and does not mention what happens when the connection is down, whether the check has side effects, whether it waits or times out, or what kind of response the agent should expect. For a network connectivity check, this is a meaningful gap.

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 extremely concise and front-loaded: a single English sentence conveys the entire purpose. The Korean sentence is a direct translation and adds no new information, but it is not padding in a bilingual tool context. There is no wasted English prose.

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 connectivity check, the description captures the core intent. An output schema is present, so return-value details do not need to be repeated in the description. The only minor gap is the lack of clarification about whether this is a lightweight existence check or a full handshake, but this is not critical for invoking 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 and the schema fully documents this with 100% coverage. There is nothing for the description to add about parameter meaning or constraints, so the baseline of 4 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 states a specific verb ('check') and a specific resource ('the socket connection to Blender'), making the tool's function immediately clear. It is distinct from the sibling tools, which concern rendering, simulation, scene editing, or file operations. Even without naming a sibling, there is no ambiguity about what this tool does.

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?

The description implies usage: an agent would call this when it needs to verify whether Blender is reachable over the socket connection. However, there is no explicit guidance about when to use it versus alternatives, no prerequisite conditions, and no statement about when this check should be performed. The context is inferable but not spelled out.

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