home / mcp / kintone mcp server
MCP server for kintone
Configuration
View docs{
"mcpServers": {
"macrat-mcp-server-kintone": {
"command": "C:\\\\path\\\\to\\\\mcp-server-kintone.exe",
"args": [],
"env": {
"KINTONE_BASE_URL": "https://your-domain.cybozu.com",
"KINTONE_PASSWORD": "your_password",
"KINTONE_USERNAME": "[email protected]",
"KINTONE_API_TOKEN": "token1,token2",
"KINTONE_DENY_APPS": "4,5",
"KINTONE_ALLOW_APPS": "1,2,3"
}
}
}
}This MCP (Model Context Protocol) server lets you explore and manipulate kintone data using AI tools, enabling you to query apps, fetch project statuses, and perform updates through an AI assistant. It connects your kintone environment to MCP clients so you can interact with data in natural language or via AI-powered prompts, streamlining common data tasks and workflow automations.
To use this MCP server with your client (for example Claude Desktop), configure your MCP client to connect to the server and then start issuing natural language requests. You can ask it to fetch the latest status of projects, update progress, or list projects that are behind schedule. Start by ensuring the MCP client can reach the server via the configured connection and that the necessary environment variables are set on the server process.
Prerequisites: you need a compatible MCP client and a running MCP server binary. This guide describes how to install by placing the executable and configuring your client to connect to it.
1. Download the latest release of the MCP server for kintone from the release page.
2. Place the executable file anywhere you like on your system.Configuration for the client is provided below. Make sure you restart the client after updating the configuration to apply changes.
{
"mcpServers": {
"kintone": {
"command": "C:\\path\\to\\mcp-server-kintone.exe",
"env": {
"KINTONE_BASE_URL": "https://<domain>.cybozu.com",
"KINTONE_USERNAME": "<your username>",
"KINTONE_PASSWORD": "<your password>",
"KINTONE_API_TOKEN": "<your api token>, <another api token>, ...",
"KINTONE_ALLOW_APPS": "1, 2, 3, ...",
"KINTONE_DENY_APPS": "4, 5, ..."
}
}
}
}- Provide the minimum required access by setting KINTONE_ALLOW_APPS and/or KINTONE_DENY_APPS as needed. Deny rules take precedence over allow rules. - Use a dedicated user or API token with scoped permissions for safer operation. - Restart the client after any change to the environment or configuration to ensure changes take effect.