Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

create_environment_scope

Create a new access scope within a specified environment by providing environment ID, scope name, and optional description.

Instructions

Create a new scope in the specified environment. Requires environmentId parameter (format: env_). The tool requires 2 parameters: scopeName (name of the new scope) and description (description of the scope).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scopeNameYes
descriptionNo
environmentIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a mutating operation (create) but does not explain side effects, permission requirements, reversibility, or what the response contains. Worse, it incorrectly states the required parameter set, misrepresenting the tool's actual contract.

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

Conciseness3/5

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

The description is short, but it repeats the word 'requires' and awkwardly lists parameters in a way that is both redundant and inaccurate. A more concise, accurate phrasing would be 'Requires environmentId (format: env_<number>) and scopeName; description is optional.' The current structure wastes words and introduces ambiguity.

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 create tool with no output schema, the description should explain what the operation returns, potential errors, or any constraints. It does none of that. It also fails to clarify the optional nature of description, leaving an agent unsure about required inputs. Given the tool's complexity and lack of structured metadata, this is insufficient.

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 does mention environmentId's format and lists scopeName and description, but it mislabels description as required (it has a default) and omits environmentId from the 'requires 2 parameters' claim. This adds confusion rather than value, and fails to clarify that description is optional.

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 ('Create a new scope') and the target resource ('in the specified environment'). It distinguishes from the sibling list_environment_scopes by implying a write operation. However, the subsequent parameter mention is muddled, claiming 'requires 2 parameters: scopeName and description' while environmentId is also required, which slightly detracts from clarity.

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 tool versus alternatives. It does not mention the read-only sibling list_environment_scopes or any prerequisites. The description simply states the operation without contextual cues for an agent to decide when it is appropriate.

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