productivity
Kintone MCP, CLI, and Lua Integration for AI Agents
Kintone integration docs for AI agents: MCP gateway setup, Kintone CLI commands, Lua API reference, credentials, and function schemas.Kintone for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
kintone.kintone_list_records | Read read | 5 | Retrieve records from a Kintone app. Supports filtering with a query string, selecting specific fields, and pagination with limit/offset. Use this to search and list data stored in any Kintone app. |
kintone.kintone_get_record | Read read | 2 | Retrieve a single record from a Kintone app by its record ID. Returns all field values for the record. |
kintone.kintone_create_record | Write write | 2 | Create a new record in a Kintone app. The record parameter is an object keyed by field codes, each containing a "value" property (e.g., {"Title": {"value": "Hello"}, "Number": {"value": 42}}). |
kintone.kintone_list_apps | Read read | 2 | List available Kintone apps. Returns app IDs, names, and descriptions to help discover which apps are accessible. |
kintone.kintone_get_app | Read read | 1 | Get details of a specific Kintone app, including its name, description, and settings. |
kintone.kintone_list_spaces | Read read | 2 | List Kintone spaces. Spaces are collaborative workspaces that contain apps, threads, and other resources. |
kintone.kintone_get_current_user | Read read | 0 | Get the profile of the currently authenticated Kintone user, including name, email, and user settings. |