chromedevtools--chrome-devtools-mcp
ed9e4dd17d
With this change new tools are added to the very back of the json file. Any removed tools will receive a isDeprecated flag in the existing entry. And the same with tool arguments.
66 行
1.9 KiB
TypeScript
66 行
1.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as fs from 'node:fs';
|
|
import * as path from 'node:path';
|
|
|
|
import type {ParsedArguments} from '../build/src/bin/chrome-devtools-mcp-cli-options.js';
|
|
import {
|
|
applyToExistingMetrics,
|
|
generateToolMetrics,
|
|
type ToolMetric,
|
|
} from '../build/src/telemetry/toolMetricsUtils.js';
|
|
import type {ToolDefinition} from '../build/src/tools/ToolDefinition.js';
|
|
import {createTools} from '../build/src/tools/tools.js';
|
|
|
|
export function HaveUniqueNames(tools: ToolDefinition[]): boolean {
|
|
const toolNames = tools.map(tool => tool.name);
|
|
const toolNamesSet = new Set(toolNames);
|
|
return toolNamesSet.size === toolNames.length;
|
|
}
|
|
|
|
function writeToolCallMetricsConfig() {
|
|
const outputPath = path.resolve('src/telemetry/tool_call_metrics.json');
|
|
|
|
const dir = path.dirname(outputPath);
|
|
if (!fs.existsSync(dir)) {
|
|
throw new Error(`Error: Directory ${dir} does not exist.`);
|
|
}
|
|
|
|
const fullTools = createTools({slim: false} as ParsedArguments);
|
|
const slimTools = createTools({slim: true} as ParsedArguments);
|
|
|
|
const allTools = [...fullTools, ...slimTools];
|
|
|
|
if (!HaveUniqueNames(allTools)) {
|
|
throw new Error('Error: Duplicate tool names found.');
|
|
}
|
|
|
|
let existingMetrics: ToolMetric[] = [];
|
|
if (fs.existsSync(outputPath)) {
|
|
try {
|
|
existingMetrics = JSON.parse(
|
|
fs.readFileSync(outputPath, 'utf8'),
|
|
) as ToolMetric[];
|
|
} catch {
|
|
console.warn(
|
|
`Warning: Failed to parse existing metrics from ${outputPath}. Starting fresh.`,
|
|
);
|
|
}
|
|
}
|
|
|
|
const newMetrics = generateToolMetrics(allTools);
|
|
const mergedMetrics = applyToExistingMetrics(existingMetrics, newMetrics);
|
|
|
|
fs.writeFileSync(outputPath, JSON.stringify(mergedMetrics, null, 2) + '\n');
|
|
|
|
console.log(
|
|
`Successfully wrote ${mergedMetrics.length} total tool metrics (including deprecated ones) to ${outputPath}`,
|
|
);
|
|
}
|
|
|
|
writeToolCallMetricsConfig();
|