
Kintone Development Support MCP Server
Enables developers to access kintone API specifications, field type documentation, and development best practices through natural language queries. Supports API request validation and provides comprehensive development guidance for kintone customizations.
README
Kintone Customize Development Support MCP Server
An MCP (Model Context Protocol) server that provides comprehensive development support for kintone customizations, including API specifications, field type documentation, and development tips.
Features
- 🔍 API Specification Search: Query kintone REST API specifications by endpoint, method, or category
- 📝 Field Types Documentation: Access detailed information about kintone field types and their properties
- 💡 Development Tips: Search development best practices and troubleshooting guides
- ✅ Request Validation: Validate API requests against kintone specifications
- 🔄 Auto-Updates: Automatic synchronization with official kintone documentation via CICD
Installation
Option 1: Install from npm (Recommended)
# Install globally
npm install -g kintone-mcp-server
# Or using pnpm
pnpm add -g kintone-mcp-server
# Or using yarn
yarn global add kintone-mcp-server
# Run the server
kintone-mcp-server
Option 2: Install locally in project
# Install as dependency
npm install kintone-mcp-server
# Run via npx
npx kintone-mcp-server
# Or add to package.json scripts
{
"scripts": {
"mcp-server": "kintone-mcp-server"
}
}
Option 3: Development setup
# Clone the repository
git clone <repository-url>
cd kintone-mcp-server
# Install dependencies
pnpm install
# Build the server
pnpm build
# Start the server
pnpm start
MCP Client Configuration
Add the server to your MCP client configuration (e.g., Claude Desktop):
If installed globally:
{
"mcpServers": {
"kintone-dev-support": {
"command": "kintone-mcp-server"
}
}
}
If installed locally:
{
"mcpServers": {
"kintone-dev-support": {
"command": "npx",
"args": ["kintone-mcp-server"]
}
}
}
Development setup:
{
"mcpServers": {
"kintone-dev-support": {
"command": "node",
"args": ["/path/to/kintone-mcp-server/dist/index.js"]
}
}
}
Available Tools
Tool Name | Description | Parameters |
---|---|---|
search_api_specs |
Search kintone API specifications | query , category , method |
search_field_types |
Search field type information | fieldType , category |
search_development_tips |
Find development guidance | query , category , difficulty |
get_api_endpoint |
Get detailed endpoint info | endpoint , method |
validate_api_request |
Validate API request format | endpoint , method , requestBody |
get_update_info |
Check data update status | includeHistory |
Available Resources
Resource URI | Description |
---|---|
kintone://api/specifications |
Complete API specification catalog |
kintone://api/field-types |
Field types documentation |
kintone://tips/all |
All development tips |
Usage Examples
Search API Specifications
{
"name": "search_api_specs",
"arguments": {
"query": "get records",
"category": "records"
}
}
Get Field Type Information
{
"name": "search_field_types",
"arguments": {
"fieldType": "SINGLE_LINE_TEXT",
"includeProperties": true
}
}
Find Development Tips
{
"name": "search_development_tips",
"arguments": {
"query": "performance optimization",
"category": "performance"
}
}
Development
Scripts
pnpm build
- Build TypeScript to JavaScriptpnpm test
- Run all testspnpm test:watch
- Run tests in watch modepnpm lint
- Run Biome linterpnpm format
- Format code with Biome
Project Structure
src/
├── models/ # Data models and interfaces
├── server/ # MCP server core functionality
├── tools/ # Individual tool implementations
├── services/ # Storage and update services
└── index.ts # Application entry point
tests/
├── contract/ # MCP protocol compliance tests
├── tools/ # Individual tool tests
├── integration/ # End-to-end scenario tests
├── unit/ # Unit tests
└── performance/ # Performance tests
Testing
The project follows Test-Driven Development (TDD):
- Contract Tests: Verify MCP protocol compliance
- Tool Tests: Test individual tool functionality
- Integration Tests: End-to-end user scenarios
- Unit Tests: Component-level testing
Architecture
- TypeScript: Type-safe development with strict mode
- MCP SDK: Official Model Context Protocol implementation
- File Storage: JSON-based data storage for specifications
- CICD Integration: Automatic updates from official kintone sources
- Vitest: Fast unit testing framework
- Biome: Fast linting and formatting
Data Sources
The server automatically synchronizes with official kintone resources:
- API Specifications: https://github.com/kintone/rest-api-spec
- Field Types: https://cybozu.dev/ja/kintone/docs/overview/field-types/
- Development Tips: https://cybozu.dev/ja/kintone/tips/development/
Contributing
- Follow the existing TDD workflow
- All tests must pass before committing
- Use Biome for code formatting
- Update documentation for new features
License
UNLICENSED - Private project
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.