Kintone

Connect your AI agents to Kintone.

Authentication: password authentication. See Magic Link for the runtime auth flow.

Sample use cases

  • List records in the Customer Requests app where status is Open and priority is High.
  • Add a record to the Bug Tracker app for each row in this triage doc.
  • Find apps in the Engineering space and pull their record counts.

Available Tools

get_app

Get general information of a Kintone app including name, description, Space, creator and updater info.

get_apps

List Kintone apps with optional filters by IDs, codes, name, or Space IDs. Supports pagination.

get_form_fields

Get the list of fields and field settings of a Kintone app. Returns field codes, types, labels, and configuration.

get_form_layout

Get the field layout of a Kintone app form, including row structure, field sizes, and grouping.

get_app_views

Get the list of views configured for a Kintone app.

get_record

Get a single record from a Kintone app by record ID.

get_records

Get multiple records from a Kintone app. Supports query filtering, field selection, and pagination.

add_record

Add a single record to a Kintone app. Record data uses field code keys with value objects.

add_records

Add multiple records to a Kintone app in bulk (max 100). All records are added atomically.

update_record

Update a single record in a Kintone app. Supports optimistic locking via revision.

update_records

Update multiple records in a Kintone app in bulk (max 100). Updates are atomic.

delete_records

Delete records from a Kintone app by IDs (max 100). Permanent.

get_record_comments

Get comments on a record. Returns up to 10 comments per request.

add_record_comment

Add a comment to a record. Optionally include mentions to notify users.

delete_record_comment

Delete a comment from a record. Only the comment creator or an app admin can delete.

upload_file

Upload a file to Kintone. Returns a fileKey that can be used in record attachment fields.

get_space

Get information about a Kintone Space including name, privacy settings, and member count.

get_space_members

Get the list of members in a Kintone Space, including their roles and permissions.

update_space_body

Update the body content of a Kintone Space. Accepts HTML content.