Skip to main content
Glama

balena_create_team

Create a team in an organization by providing the organization ID and team name.

Instructions

Create a team in an organization.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
organization_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.6/5.0
Behavior2/5

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

The description only restates the creation action and adds no behavioral detail beyond the annotations. It does not mention prerequisites, side effects, uniqueness constraints, or failure modes, so the agent gains little beyond what readOnlyHint=false and idempotentHint=false already imply.

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

Conciseness5/5

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

The description is a single front-loaded sentence with no filler. Every word contributes to stating the action and target resource.

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 operation, the description is minimally viable: it states what the tool does, and the schema provides parameter names and constraints. However, it would be more complete with usage guidance or behavioral notes, especially since there is no output schema.

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%, and the description does not explain the meaning or relationship of 'name' or 'organization_id'. The phrase 'in an organization' hints at organization_id, but it does not compensate for the complete lack of parameter documentation in the description.

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?

The description uses a specific verb ('Create') and resource ('a team in an organization'), making the operation unambiguous. It clearly distinguishes this from sibling create tools like balena_create_fleet or balena_create_tag by naming the team resource.

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

Usage Guidelines4/5

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

The description provides clear context: use this when creating a team within an organization. It does not explicitly discuss exclusions or alternatives, but the resource is unique enough that no close alternative exists among the listed siblings.

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