Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

create_organization

Create a new organization under a specified environment by providing the required environment ID and organization name.

Instructions

Create a new organization under the specified environment. Requires environmentId parameter (format: env_).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentIdYes
organizationNameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/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 for behavioral disclosure. It states the mutation and environment scope, but it does not disclose uniqueness/duplicate behavior, idempotency, required auth, or expected outcome. This is a minimal disclosure for a write operation.

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 description is one front-loaded sentence with no filler. It could have used the space to describe organizationName, but as conciseness and structure, it is appropriately short and ordered.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter create tool, the description plus schema gives enough to invoke it, but it is only minimally complete. It omits return behavior, duplicate/error semantics, and explanation of organizationName, and there is no output schema or annotations to fill those gaps.

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 for both parameters. It adds an environmentId format hint (though saying '<number>' is narrower than the schema's ^env_\w+$ pattern), but it says nothing about organizationName. One of two required parameters is left entirely to the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description says 'Create a new organization under the specified environment,' a specific verb and resource with the environment scope. This clearly separates it from read/update/list and organization-user creation siblings.

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?

The create wording implies the obvious use case, but there is no explicit when-to-use guidance or mention of alternatives, such as using get_organization_details/list_organizations for reads or create_organization_user for users. Context is clear but not explicitly contrasted.

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