chrome-devtools-mcp-for-extension 0.24.0 → 0.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -202,7 +202,9 @@ ${response}
|
|
|
202
202
|
}
|
|
203
203
|
export const askChatGPTWeb = defineTool({
|
|
204
204
|
name: 'ask_chatgpt_web',
|
|
205
|
-
description: 'Ask ChatGPT via browser. Logs to docs/ask/chatgpt/.'
|
|
205
|
+
description: 'Ask ChatGPT via browser. Logs to docs/ask/chatgpt/. ' +
|
|
206
|
+
'IMPORTANT: Always continues existing project chat by default. ' +
|
|
207
|
+
'Only set createNewChat=true when user explicitly says "新規で" or "new chat".',
|
|
206
208
|
annotations: {
|
|
207
209
|
category: ToolCategories.NAVIGATION_AUTOMATION,
|
|
208
210
|
readOnlyHint: false,
|
|
@@ -218,7 +220,8 @@ export const askChatGPTWeb = defineTool({
|
|
|
218
220
|
createNewChat: z
|
|
219
221
|
.boolean()
|
|
220
222
|
.optional()
|
|
221
|
-
.describe('Force new chat'
|
|
223
|
+
.describe('Force new chat. Only use true when user explicitly requests "新規で" or "new chat". ' +
|
|
224
|
+
'Default false = always continue existing project chat.'),
|
|
222
225
|
useDeepResearch: z
|
|
223
226
|
.boolean()
|
|
224
227
|
.optional()
|
|
@@ -167,7 +167,9 @@ ${response}
|
|
|
167
167
|
}
|
|
168
168
|
export const askGeminiWeb = defineTool({
|
|
169
169
|
name: 'ask_gemini_web',
|
|
170
|
-
description: 'Ask Gemini via browser. Logs to docs/ask/gemini/.'
|
|
170
|
+
description: 'Ask Gemini via browser. Logs to docs/ask/gemini/. ' +
|
|
171
|
+
'IMPORTANT: Always continues existing project chat by default. ' +
|
|
172
|
+
'Only set createNewChat=true when user explicitly says "新規で" or "new chat".',
|
|
171
173
|
annotations: {
|
|
172
174
|
category: ToolCategories.NAVIGATION_AUTOMATION,
|
|
173
175
|
readOnlyHint: false,
|
|
@@ -175,7 +177,8 @@ export const askGeminiWeb = defineTool({
|
|
|
175
177
|
schema: {
|
|
176
178
|
question: z.string().describe('Question text'),
|
|
177
179
|
projectName: z.string().optional().describe('Project name (default: cwd)'),
|
|
178
|
-
createNewChat: z.boolean().optional().describe('Force new chat'
|
|
180
|
+
createNewChat: z.boolean().optional().describe('Force new chat. Only use true when user explicitly requests "新規で" or "new chat". ' +
|
|
181
|
+
'Default false = always continue existing project chat.'),
|
|
179
182
|
},
|
|
180
183
|
handler: async (request, response, context) => {
|
|
181
184
|
const { question, projectName, createNewChat = false } = request.params;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-devtools-mcp-for-extension",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.1",
|
|
4
4
|
"description": "MCP server for Chrome extension development with Web Store automation. Fork of chrome-devtools-mcp with extension-specific tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./scripts/cli.mjs",
|