Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-kintone

为kintone设计的MCP服务器,支持通过AI工具如Claude Desktop探索和操作kintone数据。

article

README

🚀 针对 kintone 的 MCP 服务器

本项目是一个针对 kintoneModel Context Protocol (MCP) 服务器。借助这个服务器,您能够使用诸如 Claude Desktop 等 AI 工具,对 kintone 数据进行探索和操作。

🚀 快速开始

安装

发布页面 下载最新版本,可将可执行文件放置在任意位置。

配置 MCP 客户端,例如 Claude Desktop

需对客户端进行配置,使其能够连接到服务器。 对于 Claude Desktop,需编辑以下文件:

  • MacOS/Linux: ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

mcpServers 部分添加以下配置:

{
  "mcpServers": {
    "kintone": {
      "command": "C:\\path\\to\\mcp-server-kintone.exe",
      "env": {
        "KINTONE_BASE_URL": "https://<域名>.cybozu.com",
        "KINTONE_USERNAME": "<您的用户名>",
        "KINTONE_PASSWORD": "<您的密码>",
        "KINTONE_API_TOKEN": "<您的 API 令牌>, <另一个 API 令牌>, ...",
        "KINTONE_ALLOW_APPS": "1, 2, 3, ...",
        "KINTONE_DENY_APPS": "4, 5, ..."
      }
    }
  }
}

环境变量说明: | 属性 | 详情 | | ---- | ---- | | KINTONE_BASE_URL | (必填) 您 kintone 的基础 URL。 | | KINTONE_USERNAME | 您在 kintone 中的用户名。 | | KINTONE_PASSWORD | 您在 kintone 中的密码。 | | KINTONE_API_TOKEN | 逗号分隔的 kintone API 令牌。您需要设置以下任意一项:KINTONE_USERNAMEKINTONE_PASSWORDKINTONE_API_TOKEN。 | | KINTONE_ALLOW_APPS | 想允许访问的应用 ID 的逗号分隔列表。默认情况下,所有应用都允许访问。 | | KINTONE_DENY_APPS | 您想拒绝访问的应用 ID 的逗号分隔列表。拒绝具有比允许更高的优先级。 |

配置完成后,可能需要重新启动 Claude Desktop 以使更改生效。

开始使用

现在您就可以使用自己的 AI 工具与 kintone 进行交互了! 例如,您可以提出如下问题:

  • "Customer A 的项目最新的状态是什么?"
  • "将项目 B 的进度更新为 50%。"
  • "显示进度落后的项目。"
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client