Skip to main content
Glama

Get Roblox Executor Environment Information

get-executor-environment

Check and retrieve the capabilities, custom globals, and identification metadata of the running Roblox executor environment to determine available features.

Instructions

Check and retrieve the capabilities, custom globals, and identification metadata of the running Roblox exploit/executor environment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are supplied, so the description carries the full behavioral burden. It implies a read-only inspection of runtime state ('check and retrieve') with no mutation language, which is useful, but it never states that it is side-effect-free, what the returned structure looks like, or whether the target environment must already be attached/active.

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 the resource named early and no filler. 'Check and retrieve' is mildly redundant, keeping it from a 5.

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?

With no parameters, no annotations, and no output schema, the description is the only contract, and it does enumerate the categories of information returned. It is sufficient to call the tool correctly; only the absence of any usage context and return-shape detail keeps it from a 5.

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 takes zero parameters, so there is no parameter semantics burden; baseline for 0 params is 4. The description adds nothing misleading about inputs.

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?

Names a specific verb pair (check/retrieve) and a specific resource (the running Roblox executor environment), and enumerates what is returned: capabilities, custom globals, identification metadata. An agent can distinguish it from data-oriented siblings like get-game-info or get-instance-properties. It stops short of naming a sibling explicitly, so it isn't 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?

No when-to-use, when-not-to-use, or alternative routing is provided. The agent must infer from the name and the phrase 'running ... environment' that this is a pre-flight capability probe, but nothing states that explicitly or says what to do instead.

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