Overview
What is Kintone MCP Server?
Kintone MCP Server is the official local server for Kintone, designed to facilitate the development and testing of Kintone applications in a local environment.
How to use Kintone MCP Server?
To use Kintone MCP Server, you can install it via DXT for Claude Desktop, run it in a Docker container, or install it as an npm package. Configuration is required to connect to your Kintone environment.
Key features of Kintone MCP Server?
- Local development environment for Kintone applications.
- Supports installation via DXT, Docker, and npm.
- Allows for easy configuration and management of Kintone applications.
Use cases of Kintone MCP Server?
- Developing and testing Kintone applications locally.
- Managing Kintone application data without affecting the production environment.
- Facilitating integration with other tools and services in a controlled environment.
FAQ from Kintone MCP Server?
- Can I run Kintone MCP Server without Docker?
Yes, you can install it as an npm package or use DXT for Claude Desktop.
- Is Kintone MCP Server free to use?
Yes, it is free to use for development purposes.
- What are the system requirements for running Kintone MCP Server?
You need Docker installed for the Docker version, or Node.js for the npm version.
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"
}
}
}
}