Skip to main content
Glama

minecraft_help

Returns static, read-only guidance on Minecraft MCP workflows, safety, and tasks to help agents plan actions without changing game state.

Instructions

Return static, read-only guidance for MCP agents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskNo
topicNoworkflow

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose two useful traits: the content is static and read-only, so the agent knows there are no side effects. However, it says nothing about auth requirements, rate limits, or how the task/topic inputs shape behavior, leaving significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler. It is efficient, though its brevity borders on under-specification rather than tight conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values need not be explained, but the tool has two undocumented parameters and no usage guidance or annotation coverage. For a help tool whose whole value is telling an agent what to do, this description is too thin.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the schema does not document either parameter, and the description never mentions task or topic. The agent is left to infer that topic defaults to a workflow string and that task is an optional free-form hint, with no semantics added anywhere.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a verb ("Return") and a resource ("guidance"), but "guidance" is vague about what the guidance covers and how it relates to the minecraft domain. It does not distinguish itself from the sibling help_command, leaving the agent unsure which to pick. Adequate but underspecified.

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

Usage Guidelines2/5

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

No indication of when to use this versus alternatives, and the sibling set contains a plausible duplicate (help_command) plus minecraft_describe_tool. There is no exclusions, prerequisites, or context cue of any kind.

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