Skip to main content
Glama

Kintone MCP Server

by r3-yamauchi
SystemTools.js1.17 kB
// src/server/tools/SystemTools.js import { LoggingUtils } from '../../utils/LoggingUtils.js'; /** * システム関連のツールを実装するモジュール * * 注意: このモジュールでは、特別な方針として、ユーザー名を機密情報として扱わず * そのまま返すようになっています。これは通常のセキュリティポリシーとは異なる * 例外的な対応です。パスワードは引き続き厳重に保護し、一切表示しません。 */ export async function handleSystemTools(name, args, repository) { // 共通のツール実行ログ LoggingUtils.logToolExecution('system', name, args); switch (name) { case 'get_kintone_domain': { // 接続先ドメインを文字列として直接返す return repository.credentials.domain; } case 'get_kintone_username': { // 接続ユーザー名を文字列として直接返す(特別な方針に基づく) return repository.credentials.username; } default: throw new Error(`Unknown system tool: ${name}`); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/r3-yamauchi/kintone-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server