Kintone REST MCP server for AI agents and assistants

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Kintone REST MCP or direct API to read records, create and update records, query apps, and manage app settings through natural language.

Kintone REST logoKintone REST
Oauth2

Kintone REST is Kintone's REST API for managing apps, records, and settings. Use delegated OAuth to securely grant read and write access for integrations.

55 Tools

Try Kintone REST now

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

TOOL ROUTER PLAYGROUND
Kintone REST
Try asking
TOOLS

Supported Tools

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

Add Comment

Add one comment to a Kintone record, optionally mentioning up to 10 users, groups, or organizations.

Add Form Fields

Add typed fields to an app's pre-live form, including selections, lookups, related-record lists, groups, and nested tables.

Add Preview App

Create a pre-live Kintone app and return its app ID and initial settings revision.

Create Record

Create one record in a Kintone app from field-code values and return its record ID and revision.

Create Records

Create one to 100 records atomically in one Kintone app and return their record IDs and revisions in input order.

Delete Comment

Permanently delete one comment from a Kintone record.

Delete Form Fields

Delete up to 100 fields from an app's pre-live form.

Delete Records

Permanently delete one to 100 explicitly identified records from a Kintone app.

Deploy App Settings

Atomically apply the complete pre-live settings of up to 300 Kintone apps to their live apps.

Discard App Settings Changes

Permanently discard every pre-live settings change for up to 300 Kintone apps and restore each preview to its current live settings.

Download File

Download an attachment up to 100 MB using the file key returned by a record read.

Get Action Settings

Return deployed or unpublished record-copy action settings of an app, including destinations, mappings, availability, order, and revision.

Get App

Gets general information of an App, including the name, description, related Space, creator and updater information.

Get App Deploy Status

Get the deployment status of settings for up to 300 Kintone apps.

Get App Permissions

Return deployed or unpublished app-level permissions and settings revision in priority order.

Get App Settings

Return an app's deployed or unpublished name, description, title-field configuration, feature flags, theme, icon, and revision.

Get Customization

Return deployed or unpublished desktop and mobile JavaScript and CSS customization files, scope, and revision for an app.

Get Field Permissions

Return deployed or unpublished field permissions, including prioritized subjects and each field's access level.

Get Form

Read a deployed or unpublished app form in Kintone's legacy property-array format.

Get Form Fields

Return deployed or unpublished field codes, types, labels, and settings so an agent can construct valid record values and queries.

Get Form Layout

Return deployed or unpublished field layout information for an app form, including rows, groups, tables, fields, and sizes.

Get General Notification Settings

Get an app's deployed or unpublished general-notification recipients, event conditions, commenter option, and revision.

Get Graph Settings

Return deployed or unpublished graph definitions with their chart, aggregation, grouping, sorting, periodic-report settings, and revision.

Get Per Record Notification Settings

Get an app's deployed or unpublished conditional per-record notifications, recipients, subjects, and revision.

Get Process Management Settings

Return deployed or unpublished process-management enablement, statuses, assignee rules, transitions, branch conditions, and revision.

Get Record

Retrieve one record from a Kintone app by its record ID.

Get Record Permissions

Return deployed or unpublished record permission rules, preserving each query filter and prioritized subject list.

Get Reminder Notification Settings

Get an app's deployed or unpublished reminder timing, filters, recipients, timezone, and revision.

Get Views

Return deployed or unpublished list, calendar, custom, and built-in view settings, including filters, sorting, displayed fields, and revision.

List Apps

Find apps visible to the connected Kintone user by name, ID, code, or space and return one offset-controlled page of app metadata.

List Comments

Retrieve one offset-controlled page of up to 10 comments from a Kintone record.

Search Records

Search an app's records with a Kintone query and return one offset-controlled page.

Update Action Settings

Replace the complete unpublished record-copy action map.

Update App Permissions

Replace app-level permissions in priority order and deploy all pending app settings, not only permissions.

Update Assignees

Replace the assignees of one Kintone record whose app uses Process Management.

Update Customization

Update unpublished desktop and mobile JavaScript and CSS customization.

Update Field Permissions

Replace field permissions and deploy all pending app settings, not only permissions.

Update Form Fields

Update typed field settings in an app's pre-live form.

Update Form Layout

Replace an app's complete pre-live form layout.

Update General Notification Settings

Replace or selectively update an app's undeployed general-notification settings; deploy the app settings afterward to make them live.

Update General Settings

Update unpublished general app settings such as name, description, icon, theme, feature flags, title field, and number precision.

Update Graph Settings

Replace the complete unpublished graph map.

Update Per Record Notification Settings

Replace an app's undeployed per-record notification rules; deploy the app settings afterward to make them live.

Update Preview App Permissions

Replace the complete unpublished app-level permission list in priority order without deploying it.

Update Preview Field Permissions

Replace the complete unpublished field permission list without deploying it.

Update Preview Record Permissions

Replace the complete unpublished record permission rule list without deploying it.

Update Process Management Settings

Update unpublished process-management settings.

Update Record

Update selected fields of one Kintone record by record ID, optionally requiring an expected revision.

Update Record Permissions

Replace record permission rules and deploy all pending app settings, not only permissions.

Update Records

Update selected fields of one to 100 Kintone records atomically by record ID, optionally checking each revision.

Update Reminder Notification Settings

Replace or selectively update an app's undeployed reminder rules and timezone; deploy the app settings afterward to make them live.

Update Status

Run one Process Management action to update a Kintone record's workflow status, optionally selecting the next assignee and checking the current revision.

Update Statuses

Run Process Management actions for one to 100 Kintone records in the same app, optionally selecting assignees and checking revisions.

Update Views

Replace the complete unpublished list, calendar, and custom view map.

Upload File

Upload one managed file to Kintone and return the temporary file key used to attach it to a record within three days.

SETUP GUIDE

Connect Kintone REST 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 REST
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: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

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

Connect Kintone REST 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 REST 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: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Kintone REST actions with your Agent

Why Use Composio?

AI Native Kintone REST Integration

  • Supports both Kintone REST MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Kintone REST data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Kintone REST access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

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

Rolling this out across your team?

Give your team centralized access control across every framework with Composio’s MCP Gateway.

EXPLORE MCP GATEWAY
FAQ

Frequently asked questions

Kintone REST requires connections to go through your own OAuth app. You register it once with Kintone REST, add its client ID and secret in the Composio dashboard, and from then on everyone connects by signing in to Kintone REST as usual. Composio handles the rest of the flow and the token refresh.

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

Yes. Composio is SOC 2 Type II compliant and is built to keep your Kintone REST connection and credentials secure. OAuth tokens and API keys are encrypted, and sensitive customer data is protected at rest and in transit.

Composio also undergoes independent security testing and continuously monitors its systems for security threats. You can review the latest reports and policies in the Composio Trust Center.

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

When you connect a Kintone REST account through Composio, every action runs under that account, so anything the agent creates, sends, or changes shows up in Kintone REST as done by you. Keep an approval step in your prompt for actions with side effects, such as sending or deleting, and have the agent draft first.

Exactly the ones Kintone REST lists on its consent screen when you connect. Review that screen before approving. If you connect a work account, your Kintone REST administrator may need to approve the app first, and you can revoke the access inside Kintone REST whenever you want.

Yes. Composio supports multiple connected accounts for the same app, and that works in Claude, ChatGPT, or any other assistant you connect through Composio. Give each Kintone REST connection a name such as work or personal, and the assistant uses the one you mention in the request. Each account keeps its own credentials and nothing is merged.

Composio refreshes Kintone REST tokens automatically, so day to day you do nothing. If you revoke access inside Kintone REST, or Kintone REST invalidates the session, the connection shows as expired in Composio and the agent stops acting on that account until you reconnect it, which is a single sign-in.

Composio's free plan includes 100,000 tool calls per month with no credit card, which covers most personal Kintone REST use. Paid plans add higher limits and team features. Your Kintone REST plan and its API limits still apply as usual.

Built-in connectors usually give one AI access to a limited set of apps. Many people use Composio because it lets their AI connect to more apps than it normally supports, or connect to multiple accounts for the same app (e.g. connect Claude to multiple Kintone REST accounts).

With Composio, you connect Kintone REST once and then use it across different AI assistants without setting it up separately in each one. Connect your apps to Composio once, then connect Composio to whichever AI you use, whether that's Claude, ChatGPT, Hermes, or your own custom assistant.

Start with Kintone REST.It takes 30 seconds.

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

Start building