Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

update_organization_settings

Update organization settings by enabling or disabling features like directory sync. Provide environment and organization IDs along with a feature list to apply changes.

Instructions

Update the settings of an organization. Requires environmentId parameter (format: env_). It needs the following parameters: organizationId, feature (valid json key-value pair array) {[{"name":"dir_sync","enabled":true}]}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
featuresYes
environmentIdYes
organizationIdYes

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?

With no annotations, the description carries the full burden, yet it only restates the mutation implied by the tool name and adds input prerequisites. It does not disclose side effects, whether the update is partial or full, permission requirements, or what the response contains. The environmentId format is also stated as 'number' while the schema allows \w+.

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 definition is short and front-loads the operation before listing parameters and an example. Minor redundancy ('Requires environmentId... It needs the following parameters') is present, but no sentences are wasted.

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 mutating tool with no annotations and no output schema, the description should explain effects, return behavior, and permission expectations. It provides none of these, and the parameter guidance is incomplete and slightly inaccurate, leaving an agent to infer the correct call.

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 needed to explain all three parameters. It gives an example for features and a format hint for environmentId, but uses the singular 'feature' instead of the schema's 'features', says 'number' where the regex permits broader word characters, and does not explain organizationId or the semantics of the name/enabled pair beyond the example.

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 ('Update the settings of an organization') and the resource it acts on, distinguishing it from sibling tools like create_organization and get_organization_details. However, 'settings' remains somewhat generic and the description does not say that it modifies feature flags until the parameter example.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies when to use the tool: when organization settings need to be updated. It also notes required parameters, which helps the agent prepare a call. It does not explicitly state when not to use it or which alternative to prefer, though no sibling directly competes as an 'update organization settings' operation.

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