From 37950aae831e5fe8a3d28f7f75be5c6214aedd0a Mon Sep 17 00:00:00 2001 From: emahiro Date: Wed, 9 Apr 2025 01:28:05 +0900 Subject: [PATCH 1/2] fix: rm console log --- my-fastmcp-app/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/my-fastmcp-app/src/index.ts b/my-fastmcp-app/src/index.ts index 9c0ce2d..6bbf5cd 100644 --- a/my-fastmcp-app/src/index.ts +++ b/my-fastmcp-app/src/index.ts @@ -32,7 +32,6 @@ server.addTool({ if (!apiKey) { throw new Error("Gemini APIキーが設定されていません"); } - console.log(apiKey); const genAI = new GoogleGenAI({ apiKey }); const modelName = "gemini-1.5-flash"; const response = await genAI.models.generateContent({ From c51463932fa3277f4903ff418d8aec6218204cb2 Mon Sep 17 00:00:00 2001 From: emahiro Date: Wed, 9 Apr 2025 01:28:19 +0900 Subject: [PATCH 2/2] fix: format --- my-fastmcp-app/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my-fastmcp-app/src/index.ts b/my-fastmcp-app/src/index.ts index 6bbf5cd..14b8011 100644 --- a/my-fastmcp-app/src/index.ts +++ b/my-fastmcp-app/src/index.ts @@ -1,4 +1,4 @@ -import dotenv from 'dotenv'; +import dotenv from "dotenv"; dotenv.config(); import { FastMCP } from "fastmcp";