Skip to main content
Glama

Kintone Development Support MCP Server

by f4ah6o
index.ts•719 B
#!/usr/bin/env node import { MCPServer } from "./server/MCPServer.js"; import { FileStorageService } from "./services/FileStorageService.js"; import { UpdateService } from "./services/UpdateService.js"; async function main() { try { const storage = new FileStorageService(); const updateService = new UpdateService(storage); // Initialize sample data if needed await updateService.updateFromSources(); const server = new MCPServer(storage, updateService); await server.start(); console.log("Kintone MCP Server started successfully"); } catch (error) { console.error("Failed to start MCP Server:", error); process.exit(1); } } if (import.meta.url === `file://${process.argv[1]}`) { main(); }

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/f4ah6o/kntn-dev-mcp'

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