Skip to main content
Glama
kintone

kintone MCP Server

Official
by kintone

Get General Settings

kintone-get-general-settings

Retrieve general settings for a kintone app, including its name and description, with options for language and preview environment.

Instructions

Get general settings of a kintone app

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appYesThe ID of the app to retrieve (numeric value as string)
langNoThe language for retrieving the app name and description
previewNoWhether to retrieve from preview environment (requires app administration permission for preview, record view/add permission for production)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconYesThe app icon settings
nameYesThe app name
themeYesThe app theme
revisionYesThe revision number
titleFieldYesRecord title field configuration
descriptionYesThe app description
enableCommentsYesWhether comments are enabled
numberPrecisionYesThe numeric calculation settings
enableThumbnailsYesWhether thumbnails are enabled
enableBulkDeletionYesWhether bulk record deletion is enabled
enableDuplicateRecordYesWhether record duplication is enabled
firstMonthOfFiscalYearYesThe first month of the fiscal year (1-12)
enableInlineRecordEditingYesWhether inline record editing is enabled

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv1.9.3
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv1.4.0

TDQS

C2.9/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 disclosure burden, yet it only states the bare action. It does not mention permission requirements, read-only guarantees, error behavior for nonexistent apps, or how lang/preview alter the request beyond what the schema already documents. For a tool with zero annotation coverage, this is a significant gap.

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 a single front-loaded sentence with the verb first and zero filler. It is appropriately compact, though the brevity partly reflects under-specification rather than deliberate economy.

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?

An output schema exists and parameter coverage is complete, so return shape and argument formats are already handled structurally. What is missing is routing guidance among siblings and behavioral disclosure — making this minimally viable for a simple get tool but short of complete.

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

Parameters3/5

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

Schema description coverage is 100%: app, lang, and preview each carry inline descriptions, including enum options and a permission caveat for preview. The description adds no parameter-level meaning beyond the schema, so the baseline 3 applies.

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 specific verb ('Get') and resource ('general settings of a kintone app'), which cleanly distinguishes it from sibling getters like kintone-get-form-fields, kintone-get-form-layout, and kintone-get-process-management. It stops short of explicitly naming what it is not (e.g., 'for fields, use kintone-get-form-fields'), so it misses the 5 bar.

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 the many sibling retrieval tools, no exclusions, and no prerequisites. The description merely restates the action; the agent must infer selection context purely from the resource name, with no help differentiating 'general settings' from 'app', 'form fields', 'process management', or 'app deploy status'.

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