Kintone Development Support MCP Server

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.

Category
Visit Server

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 JavaScript
  • pnpm test - Run all tests
  • pnpm test:watch - Run tests in watch mode
  • pnpm lint - Run Biome linter
  • pnpm 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):

  1. Contract Tests: Verify MCP protocol compliance
  2. Tool Tests: Test individual tool functionality
  3. Integration Tests: End-to-end user scenarios
  4. 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

  1. Follow the existing TDD workflow
  2. All tests must pass before committing
  3. Use Biome for code formatting
  4. Update documentation for new features

License

UNLICENSED - Private project

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured