drio
Open app

MCP server for kintone サンプル

Source

MCP server for kintone

Catalog onlyCatalog onlySTDIO

Overview

The kintone MCP Server is a sample server designed for integration with kintone using the Model Context Protocol (MCP). It allows users to access and update kintone data through the Claude Desktop application.

To use the kintone MCP Server, download the source code, install Node.js, run npm install, configure the Claude Desktop app, and restart the app to start using the server.

  • Access and update kintone data via Claude Desktop. - Supports various record operations like create, update, and delete. - File upload and download capabilities. - App management features including creation and deployment.
  1. Automating data entry and updates in kintone applications.
  2. Integrating kintone with other applications using Claude.
  3. Managing kintone applications and their settings programmatically.

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": {
    "kintone-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

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": {
    "kintone-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "kintone-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "kintone-mcp-server-r3-yamauchi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "kintone-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "kintone-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kintone-mcp-server-r3-yamauchi"
      ]
    }
  }
}

FAQ

What is required to use the kintone MCP Server?

You need a subscription to the Claude Pro plan and Node.js installed on your machine.

Can I use this server with other applications?

Yes, it can be integrated with other applications that support MCP.

Is there any support available for this server?

No, the server is provided as-is for informational purposes, and individual support is not available.