Skip to main content
Glama
aswdffdas-sudo

2021 Roblox Studio MCP Bridge

delete_instance

Deletes a specified instance from the Roblox DataModel using its path, removing unwanted objects during Studio MCP sessions.

Instructions

Deletes an instance from the DataModel

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesPath of instance to destroy

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/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 disclosure burden, yet it only says the instance is deleted from the DataModel. It does not state whether deletion is recursive over children, whether it is reversible, what permissions are needed, or what happens if the path does not exist.

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; appropriately sized for a one-parameter tool, though its brevity reflects under-specification rather than true economy.

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?

For a destructive, unannotated operation with no output schema, the description omits return behavior, error conditions, and the recursive/permission semantics an agent needs. The complexity is low, but the destructive nature warrants more than one sentence.

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

Parameters3/5

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

Schema coverage is 100% and the single 'path' parameter is documented in the schema as 'Path of instance to destroy'. The description adds no format, syntax, or path-resolution detail beyond that, so the baseline 3 applies.

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 (Deletes) and resource (instance) plus scope (from the DataModel), which clearly separates it from write_script or create_instance. It does not explicitly name or contrast with any sibling, so it falls short of a 5.

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?

There is no guidance on when to use this versus create_instance or write_script, no prerequisites, and no warning about the destructive nature of the operation. The agent must infer usage entirely from the name.

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