This MCP server allows you to interact with kintone through AI applications that support the Model Context Protocol (MCP). With this tool, you can query and update kintone data, create new kintone applications, and perform various operations directly from MCP host applications like Claude Desktop.
Download the latest kintone-mcp-server.dxt file from the releases page and install it in the Claude Desktop app:
If you prefer not to use the .dxt file, follow these steps:
Download the source code to a directory path containing only alphanumeric characters (no spaces)
Install Node.js (version 20 or later)
Install dependencies:
npm i
Edit the Claude Desktop config file: Find the claude_desktop_config.json file and add the following to the "mcpServers" section:
{
"mcpServers": {
"kintone": {
"command": "node",
"env": {
"KINTONE_DOMAIN": "[your-subdomain].cybozu.com",
"KINTONE_USERNAME": "your-kintone-username",
"KINTONE_PASSWORD": "your-kintone-password"
},
"args": [
"[path-to-kintone-mcp-server]/server.js"
]
}
}
}
Restart the Claude Desktop app Make sure to completely quit the app (including from the system tray) before restarting
To check if the MCP server is working correctly, ask Claude: "What is the app ID of the kintone app '[name of an app you can access]'?"
Note that you must specify the kintone app name exactly as it appears in your kintone environment.
For more information about what you can do with this MCP server, check out these blog posts:
A separate OAuth-supported remote MCP server that can be used from the web browser version of Claude is available here.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "kintone" '{"command":"node","env":{"KINTONE_DOMAIN":"[\u3042\u306a\u305f\u304c\u4f7f\u7528\u3059\u308b\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3].cybozu.com","KINTONE_USERNAME":"MCP\u63a5\u7d9a\u3067\u4f7f\u7528\u3059\u308bkintone\u30e6\u30fc\u30b6\u30fc\u540d","KINTONE_PASSWORD":"kintone\u30e6\u30fc\u30b6\u30fc\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\uff08\u5e73\u6587\uff09"},"args":["[kintone-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"kintone": {
"command": "node",
"env": {
"KINTONE_DOMAIN": "[\u3042\u306a\u305f\u304c\u4f7f\u7528\u3059\u308b\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3].cybozu.com",
"KINTONE_USERNAME": "MCP\u63a5\u7d9a\u3067\u4f7f\u7528\u3059\u308bkintone\u30e6\u30fc\u30b6\u30fc\u540d",
"KINTONE_PASSWORD": "kintone\u30e6\u30fc\u30b6\u30fc\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\uff08\u5e73\u6587\uff09"
},
"args": [
"[kintone-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"kintone": {
"command": "node",
"env": {
"KINTONE_DOMAIN": "[\u3042\u306a\u305f\u304c\u4f7f\u7528\u3059\u308b\u30b5\u30d6\u30c9\u30e1\u30a4\u30f3].cybozu.com",
"KINTONE_USERNAME": "MCP\u63a5\u7d9a\u3067\u4f7f\u7528\u3059\u308bkintone\u30e6\u30fc\u30b6\u30fc\u540d",
"KINTONE_PASSWORD": "kintone\u30e6\u30fc\u30b6\u30fc\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\uff08\u5e73\u6587\uff09"
},
"args": [
"[kintone-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect