Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

enable_environment_connection

Enable a connection for an environment by passing its connection ID and environment ID.

Instructions

Enable an existing connection for the specified environment. Requires environmentId parameter (format: env_). This tool requires the following parameters:

  • connectionId: (ID of the connection to enable, e.g. conn_123)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
connection_idYes
environmentIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/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 disclosing behavior. It reveals that the connection must already exist, but it does not mention side effects, idempotency, permissions, failure modes, or what happens when the connection is already enabled. For a state-changing operation, this is insufficient transparency.

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 and mostly front-loaded, but the bullet list adds little value and is internally inconsistent: only connectionId is listed even though both parameters are required. The phrasing is compact but not cleanly structured.

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?

Given two required parameters, no output schema, and no annotations, the description should provide enough context for reliable invocation. It fails to give exact parameter names, accurate formats, behavioral expectations, or any usage context, leaving critical gaps for an agent.

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

Parameters1/5

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

With 0% schema description coverage, the description is the sole source of parameter meaning, and it is misleading: it refers to 'connectionId', but the schema requires 'connection_id'. It also says environmentId must use format env_<number>, while the schema pattern is '^env_\w+$', which allows more than numbers. An agent following this description would likely send the wrong parameter name and fail.

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 states a clear action ('Enable') and resource ('an existing connection for the specified environment'), which is more specific than just the tool name. However, it does not clarify what type of connection this refers to or how it differs from connection-related siblings like list_environment_connections or list_connected_accounts.

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, nor any exclusions or prerequisites beyond 'existing connection.' The description implies it is the enable operation for environments, but it never names sibling tools or conditions that should route an agent to this tool.

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