Skip to main content
Glama
r3-yamauchi

Kintone MCP Server

by r3-yamauchi

add_fields

Add custom fields to Kintone applications by specifying field codes, types, and labels. Configure default values for various field types while avoiding system fields that Kintone creates automatically.

Instructions

kintoneアプリにフィールドを追加します。各フィールドには code(フィールドコード)、type(フィールドタイプ)、label(表示名)の指定が必須です。 初期値を設定する際は、フィールドタイプごとに defaultValue または defaultNowValue を使用できます。defaultValue には文字列を指定し、日付なら "YYYY-MM-DD"、時刻なら "HH:MM"、日時なら "YYYY-MM-DDTHH:MM:SS" 形式を守ってください。defaultNowValue は true/false または "true"/"false" を受け付け、省略時は false として扱われます。 日付・時刻・日時フィールドで defaultValuedefaultNowValue: true を同時に指定した場合、defaultNowValue: true が優先され defaultValue は無視されます。 フィールドコードに使用できる文字: ひらがな、カタカナ、漢字、英数字、記号(__・・$¥) 注意: システムフィールドタイプ(CREATOR, MODIFIER, RECORD_NUMBER, CREATED_TIME, UPDATED_TIME)は追加できません。これらはkintoneによって自動的に作成されるフィールドです。 type: CREATOR のようなシステムフィールドタイプを指定すると、エラーが発生します。 代替方法として、以下のようなフィールドを追加できます:

  • CREATOR(作成者)の代わりに「申請者」などの名前でUSER_SELECTフィールド

  • MODIFIER(更新者)の代わりに「承認者」などの名前でUSER_SELECTフィールド

  • CREATED_TIME(作成日時)の代わりに「申請日時」などの名前でDATETIMEフィールド

  • UPDATED_TIME(更新日時)の代わりに「承認日時」などの名前でDATETIMEフィールド

  • RECORD_NUMBER(レコード番号)の代わりに「管理番号」などの名前でSINGLE_LINE_TEXTフィールド 例: { "app_id": 123, "properties": { "number_field": { "type": "NUMBER", "code": "number_field", "label": "数値フィールド" }, "text_field": { "type": "SINGLE_LINE_TEXT", "code": "text_field", "label": "テキストフィールド" } } } また、ルックアップフィールドをフォームに配置する際は 250 以上の幅を明示的に指定してください。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
app_idYesアプリID
propertiesYesフィールドの設定(各フィールドには code, type, label の指定が必須)
Behavior4/5

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

With no annotations provided, the description carries full burden and does an excellent job disclosing behavioral traits. It explains what gets created (fields with specific constraints), provides detailed format requirements for default values, describes priority rules when conflicting defaults are specified, and includes important constraints about system field types and lookup field width requirements.

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

Conciseness3/5

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

The description is appropriately front-loaded with core functionality, but contains some redundancy (repeating system field type warnings) and includes an extensive example that could be streamlined. While most content is valuable, the section about alternative field naming approaches could be more concise.

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

Completeness4/5

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

For a tool with no annotations and no output schema, the description provides comprehensive coverage of what the tool does, how to use it, parameter details, constraints, and examples. The only minor gap is the lack of information about what the tool returns (success/failure indicators, field IDs, etc.), which would be helpful given the absence of an output schema.

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?

Despite 100% schema description coverage, the description adds significant value beyond the schema. It elaborates on the structure of the 'properties' object, specifies required sub-fields (code, type, label), provides detailed format requirements for default values, and includes a comprehensive example showing exactly how parameters should be structured.

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 clearly states the specific action ('adds fields') and resource ('kintone app'), distinguishing it from siblings like 'create_app' (creates entire app) or 'update_field' (modifies existing fields). It precisely defines what the tool does without being tautological.

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 about when to use this tool (adding fields to an app) and includes important exclusions (system field types cannot be added). However, it doesn't explicitly compare against alternatives like 'create_choice_field' or 'create_lookup_field' which appear to be more specialized sibling tools.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/r3-yamauchi/kintone-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server