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_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Kintone CLIHeadless setup and direct function calls. Kintone MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Kintone MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Kintone.
Claude Code Kintone MCP setup for Claude Code. Cursor Kintone MCP setup for Cursor. Codex Kintone MCP setup for Codex. OpenAI Agents Kintone MCP setup for OpenAI Agents SDK. Claude Agent SDK Kintone MCP setup for Claude Agent SDK. Vercel AI SDK Kintone MCP setup for Vercel AI SDK. LangChain Kintone MCP setup for LangChain. LangGraph Kintone MCP setup for LangGraph. CrewAI Kintone MCP setup for CrewAI. MCP clients Kintone MCP setup for Generic MCP Clients.
Kintone CLI Matrix
Use these pages for direct Kintone CLI workflows in scripts, CI, cron, and agent wrappers.
CI Kintone CLI for CI. Cron Jobs Kintone CLI for cron jobs. Shell Scripts Kintone CLI for shell scripts. Headless Automation Kintone CLI for headless automation. Coding Agents Kintone CLI for coding agents.
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. |