Skip to main content
Glama

toggle_kernel_visibility

Change a Kaggle kernel's visibility to public or private. Provide the kernel reference and set make_public to true for public or false for private.

Instructions

Make kernel public or private

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYes
make_publicNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.7/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 the full burden of behavioral disclosure. It only restates the high-level effect and does not mention whether the change is reversible, immediate, permission-restricted, or how the boolean parameter controls the behavior.

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?

The description is a single concise sentence with no filler and the core action is front-loaded. However, it is somewhat under-sized given the empty parameter descriptions and missing usage guidance.

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?

With no annotations, no output schema, and completely empty parameter descriptions, this one-line description leaves essential invocation details unexplained, especially the meaning of the required ref. It is functional as a high-level summary but insufficient as complete tool documentation.

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 description must compensate. It loosely implies that make_public determines public versus private visibility, but it leaves the required ref parameter completely unexplained and adds no meaning beyond what the parameter names already suggest.

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?

The description clearly states the action ('Make') on a specific resource ('kernel') and the two outcomes ('public or private'). It is specific enough to distinguish the tool from read-only sibling tools like kernel_status, though it does not explicitly contrast it with the broader update_kernel operation.

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?

The description provides no guidance on when to use this tool versus alternatives such as update_kernel or other kernel management tools. The intended use case is implied by the name, but no conditions, 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.