KosmoKrator

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.

7 functions 6 read 1 write Bearer token auth

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.

Machine-Readable Metadata
integration_slug
kintone
route_slug
kintone
package
kintone
auth_strategy
bearer_token Bearer token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Kintone MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Kintone.

Kintone CLI Matrix

Use these pages for direct Kintone CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.