- Kintone Mcp Server
Kintone Mcp Server
Content
kintone MCP Server
日本語 | English
kintoneの公式ローカルMCPサーバーです。
インストール
DXT (Claude Desktop用パッケージ)
DXTファイルは、Claude Desktopの拡張機能としてインストールできます。
以下の手順でインストールしてください。
- リリース一覧 にアクセス
- 最新のリリースから
kintone-mcp-server.dxtをダウンロード - Claude Desktopを開く
- 設定から「デスクトップアプリ」→「拡張機能」のページを開く
- ダウンロードした
kintone-mcp-server.dxtをClaude Desktopの画面にドラッグ&ドロップ - インストール確認ダイアログが表示されるので「インストール」を選択
- 設定ダイアログが表示されるので、必要な情報を入力する
Kintone Base URL: kintoneのベースURL (例:https://example.cybozu.com)Kintone Username: kintoneのユーザー名Kintone Password: kintoneのパスワード
Dockerコンテナイメージ
Dockerのインストールが必要です。
以下のコマンドでコンテナを起動できます。
docker run -i --rm \
-e KINTONE_BASE_URL=https://example.cybozu.com \
-e KINTONE_USERNAME=(username) \
-e KINTONE_PASSWORD=(password) \
ghcr.io/kintone/mcp-server
npmパッケージ
Node.jsのインストールが必要です。
以下のコマンドでインストールできます。
npm install -g @kintone/mcp-server
以下のコマンドでサーバーを起動できます。
kintone-mcp-server \
--base-url https://example.cybozu.com \
--username (username) \
--password (password)
# `--base-url`、`--username`、`--password` は
# 環境変数 `KINTONE_BASE_URL`、`KINTONE_USERNAME`、`KINTONE_PASSWORD` でも指定可能です。
利用方法
DXTファイルをインストールした場合、追加の手順は必要ありません。
その他の利用方法では、設定ファイルを作成する必要があります。 設定ファイルの作成方法の詳細は、利用するAIツールのドキュメントを参照してください。
設定ファイルのパスの例
設定ファイルの内容の例
{
"mcpServers": {
"kintone": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"KINTONE_BASE_URL",
"-e",
"KINTONE_USERNAME",
"-e",
"KINTONE_PASSWORD",
"ghcr.io/kintone/mcp-server:latest"
],
"cwd": "${cwd}",
"env": {
"KINTONE_BASE_URL": "https://example.cybozu.com",
"KINTONE_USERNAME": "username",
"KINTONE_PASSWORD": "password"
}
}
}
}
設定
設定オプション一覧
| コマンドライン引数 | 環境変数 | 説明 | 必須 |
|---|---|---|---|
--base-url | KINTONE_BASE_URL | kintone環境のベースURL(例: https://example.cybozu.com) | ✓ |
--username | KINTONE_USERNAME | kintoneのログインユーザー名 | ※1 |
--password | KINTONE_PASSWORD | kintoneのログインパスワード | ※1 |
--api-token | KINTONE_API_TOKEN | APIトークン(カンマ区切りで最大9個まで指定可能) | ※1 |
--basic-auth-username | KINTONE_BASIC_AUTH_USERNAME | Basic認証のユーザー名 | - |
--basic-auth-password | KINTONE_BASIC_AUTH_PASSWORD | Basic認証のパスワード | - |
--pfx-file-path | KINTONE_PFX_FILE_PATH | PFXファイルのパス(クライアント証明書認証用) | - |
--pfx-file-password | KINTONE_PFX_FILE_PASSWORD | PFXファイルのパスワード | - |
--proxy | HTTPS_PROXY | HTTPSプロキシのURL(例: http://proxy.example.com:8080) | - |
※1: KINTONE_USERNAME & KINTONE_PASSWORD または KINTONE_API_TOKEN のいずれかが必須
注意事項:
- クライアント証明書認証を使用する場合、URLのドメインは
.s.cybozu.comとなります(例:https://example.s.cybozu.com) - パスワード認証とAPIトークン認証を同時に指定した場合、パスワード認証が優先されます
- コマンドライン引数と環境変数を同時に指定した場合、コマンドライン引数が優先されます
- 詳細な認証設定については 認証設定ガイド を参照してください
プロキシ設定
企業環境などでプロキシサーバーを経由する必要がある場合は、HTTPS_PROXY 環境変数を設定してください。
export HTTPS_PROXY="http://proxy.example.com:8080"
# 認証が必要な場合
export HTTPS_PROXY="http://username:password@proxy.example.com:8080"
ツール一覧
| ツール名 | 説明 |
|---|---|
kintone-get-apps | 複数のアプリ情報を取得 |
kintone-get-app | 単一アプリの詳細情報を取得 |
kintone-get-form-fields | アプリのフィールド設定を取得 |
kintone-get-process-management | プロセス管理設定を取得 |
kintone-get-records | 複数のレコードを取得 |
kintone-add-records | 複数のレコードを追加 |
kintone-update-records | 複数のレコードを更新 |
kintone-delete-records | 複数のレコードを削除 |
kintone-update-statuses | 複数のレコードのステータスを更新 |
ドキュメント
- 認証設定ガイド - 認証方法の詳細と設定例
制限事項
レコード操作の制限
- 添付ファイルフィールド: レコード登録更新ツールにおいて、添付ファイルフィールドは指定できません
- 選択フィールド: ユーザー選択フィールド、組織選択フィールド、グループ選択フィールドは、選択肢を設定している場合のみ登録更新が可能です
その他の制限
- ゲストスペースに非対応: ゲストスペース内のアプリにはアクセスできません
- 動作テスト環境に非対応: アプリの動作テスト環境(アプリ設定を本番環境に反映する前に検証できる環境)は利用できません
サポート方針
kintoneローカルMCPサーバーは、APIサポート窓口の対象外です。
バグ報告・機能要望はIssuesから登録をお願いします。
コントリビューション
Contributing Guide を参照してください。
ライセンス
Copyright 2025 Cybozu, Inc.
Licensed under the Apache 2.0.
Server Config
{
"mcpServers": {
"kintone": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"KINTONE_BASE_URL",
"-e",
"KINTONE_USERNAME",
"-e",
"KINTONE_PASSWORD",
"ghcr.io/kintone/mcp-server:latest"
],
"cwd": "${cwd}",
"env": {
"KINTONE_BASE_URL": "https://example.cybozu.com",
"KINTONE_USERNAME": "username",
"KINTONE_PASSWORD": "password"
}
}
}
}Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题;
Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
DeepChatYour AI Partner on Desktop
Serper MCP ServerA Serper MCP Server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Tavily Mcp
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
CursorThe AI Code Editor
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
WindsurfThe new purpose-built IDE to harness magic
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright McpPlaywright MCP server
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Amap Maps高德地图官方 MCP Server
ChatWiseThe second fastest AI chatbot™
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.