Overview
MCP server for kintone is a server that allows users to explore and manipulate kintone data using AI tools like Claude Desktop.
To use the MCP server, download the latest release, configure the server with your kintone credentials, and set up your AI client to connect to the server.
- Connects AI tools to kintone data. - Customizable configuration for accessing kintone apps. - Supports multiple permissions for app access.
- Querying project statuses using AI.
- Updating project progress through voice commands.
- Managing customer information efficiently.
Add to your AI client
Use these steps to connect MCP server for kintone in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"macrat-mcp-server-kintone-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-server-kintone-mcp-mirror"
]
}
}
}FAQ
What is required to connect to kintone?
You need at least a username and password or an app token to connect.
Can I access all kintone apps?
No, you must specify which apps you want to access in the configuration file.
Is there a graphical interface for this server?
No, the server is designed to work with AI tools and does not have a graphical interface.