insite-mcp
Version:
MCP server for browser automation with 52 tools using Playwright
39 lines • 1.09 kB
JavaScript
/**
* Browser engine management tools for Browser MCP Server
*/
export const browserTools = [
{
name: 'switch_browser',
description: 'Switch to a different browser engine (chromium, firefox, webkit)',
inputSchema: {
type: 'object',
properties: {
engine: {
type: 'string',
enum: ['chromium', 'firefox', 'webkit'],
description: 'Browser engine to switch to',
},
},
required: ['engine'],
},
},
{
name: 'get_browser_info',
description: 'Get information about the current browser engine',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
},
{
name: 'list_available_browsers',
description: 'Get list of all available browser engines',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
},
];
//# sourceMappingURL=browser-tools.js.map