kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
23 lines • 816 B
JavaScript
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();
}
//# sourceMappingURL=index.js.map