Skip to main content
Glama

List Custom Property Select Values

kaiten_list_custom_property_select_values
Read-onlyIdempotent

Retrieve valid select or multi-select values for a custom property before updating a card, ensuring only allowed options are used.

Instructions

Get the valid select / multi_select values for a custom property. Use this BEFORE writing the properties map via kaiten_update_card for any select / multi_select field — passing arbitrary integers will either fail or silently misassign. propertyId comes from kaiten_list_custom_properties (filter results by type='select' or type='multi_select'). Returns id, value (the display label), color, sort_order, condition. IMPORTANT: if the property exists but is not a select-type, the endpoint returns an empty array (not 400), so check the property type first. 404 means the propertyId is not in your company.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verbosityNoDetail: raw|min(default)|normal|maxmin
propertyIdYesCustom property ID (from kaiten_list_custom_properties; only select/multi_select types have values)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds valuable behavioral details beyond that: return fields, empty array for non-select types instead of 400, and the 404 meaning. These edge cases materially affect how an agent should interpret responses.

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 dense but every sentence earns its place: when to use it, where the parameter comes from, what it returns, and edge-case behavior. There is no filler or repetition of schema content.

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

Completeness5/5

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

With no output schema, the description supplies the return fields and both meaningful error/empty-result scenarios. Given the tool's simple read-only nature and the strong annotation coverage, nothing critical is missing for correct invocation.

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

Parameters4/5

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

Schema coverage is 100% and both parameters already have descriptions, so the baseline is 3. The description adds practical provenance for propertyId and explains the consequence of passing arbitrary integers, going beyond what the schema alone provides.

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 and resource: 'Get the valid select / multi_select values for a custom property.' It clearly distinguishes this from sibling tools by explaining the propertyId source and its role before kaiten_update_card.

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

Usage Guidelines5/5

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

The description explicitly says to use this BEFORE writing the `properties` map via kaiten_update_card for select/multi_select fields. It also directs the agent to source propertyId from kaiten_list_custom_properties, filter by select/multi_select type, and check the property type before interpreting results.

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

Deploy Server

Other Tools