43 lines
1.1 KiB
JavaScript
Executable File
43 lines
1.1 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
* MCP Server: chrome-devtools
|
|
* Server Version: 0.10.2
|
|
* Generated: 2025-11-23
|
|
* Tool: close_page
|
|
*
|
|
* Closes the page by its index. The last open page cannot be closed.
|
|
*/
|
|
|
|
import { program } from 'commander';
|
|
import { callTool } from './mcp_client.js';
|
|
|
|
program
|
|
.name('close_page')
|
|
.description('Closes the page by its index. The last open page cannot be closed.')
|
|
.option('--pageIdx <value>', 'The index of the page to close. Call list_pages to list pages. (required)', parseFloat)
|
|
.addHelpText('after', ' Note: --pageIdx is required')
|
|
.parse();
|
|
|
|
const options = program.opts();
|
|
|
|
// Validate required options
|
|
if (!options.pageIdx) {
|
|
console.error('Error: --pageIdx is required');
|
|
process.exit(1);
|
|
}
|
|
|
|
// Build arguments object
|
|
const args = {};
|
|
if (options.pageIdx !== undefined) {
|
|
args['pageIdx'] = options.pageIdx;
|
|
}
|
|
|
|
// Call the tool
|
|
try {
|
|
const result = await callTool('chrome-devtools', 'close_page', args);
|
|
console.log(result);
|
|
} catch (error) {
|
|
console.error('Error:', error.message);
|
|
process.exit(1);
|
|
}
|