Kintone MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Kintone MCP or direct API to manage users, update departments, assign groups, and create login codes through natural language.

Kintone logoKintone
Api Key

Kintone is Cybozu's low-code business app platform for building team databases, workflows, and custom apps. It helps teams centralize work data, processes, and user administration without heavy custom development.

16 Tools

Try Kintone now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Kintone
Try asking
TOOLS

Supported Tools

Every Kintone action and event your agent gets out of the box.

Change User Login Codes

Irreversibly change the login codes of up to 100 Kintone users in one batch.

Create Departments

Create 1 to 100 Kintone departments in one batch.

Create Groups

Create 1 to 100 static or dynamic Kintone groups in one batch.

Create Users

Create 1 to 100 Kintone tenant users in one batch with a login code, password, and display name for each user.

Delete Users, Departments, or Groups

Permanently delete a non-empty batch of Kintone users, departments, or groups by exact code.

Get User Access

Get one user's department memberships, group memberships, and Kintone service assignment in one read.

List Departments or Groups

List or filter Kintone departments or groups, one page at a time.

List Department or Group Members

List users belonging to a Kintone department or group, one page at a time.

List Users

List or filter tenant users by ID or login code, one page at a time.

Replace Group Users

Replace a Kintone static group's complete user membership list.

Replace User Departments

Replace the complete department membership lists for one to 100 Kintone users.

Replace User Groups

Replace a Kintone user's complete static-group membership list.

Set User Service Assignments

Replace Kintone service access for one to 100 users.

Update Departments

Update mutable fields for 1 to 100 existing Kintone departments, identified by exact department code.

Update Groups

Update the name and optional description of 1 to 100 existing Kintone groups, identified by exact group code.

Update Users

Update editable profile and primary-organization fields for 1 to 100 existing Kintone tenant users identified by login code.

SETUP GUIDE

Connect Kintone MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Kintone
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Generate login codes for inactive Kintone users who need password reset help'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Kintone API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Kintone Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all Kintone users and show their department memberships'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Kintone actions with your Agent

Why Use Composio?

AI Native Kintone Integration

  • Supports both Kintone MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable user, department, and group operations
  • Rich coverage for tenant admin tasks like memberships, service assignments, and login codes

Managed Auth

  • Connect Kintone API key credentials without hard-coding secrets in your agent
  • Create API key auth configs with auth_configs.create() and link tenant accounts with connected_accounts.link()
  • Per user and per environment credentials, so staging and production stay cleanly separated

Agent Optimized Design

  • Tools are tuned so agents can understand Kintone admin actions without custom glue code
  • Clear execution logs show which user, department, group, or service assignment changed
  • Use mcp.create() when you want a dedicated MCP server path for Kintone-powered agents

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Kintone admin tools
  • Scoped, least privilege access to Kintone tenant resources
  • Full audit trail of agent actions to support review, onboarding checks, and compliance
FAQ

Frequently asked questions

Yes, Kintone requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Kintone.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Kintone tool your agent needs.Free to start.

Start building