UNPKG

insite-mcp

Version:

MCP server for browser automation with 52 tools using Playwright

56 lines 1.53 kB
/** * Navigation tools for Browser MCP Server */ export const navigationTools = [ { name: 'go_back', description: 'Navigate back in browser history', inputSchema: { type: 'object', properties: { timeout: { type: 'number', description: 'Timeout in milliseconds', default: 30000, }, }, required: [], }, }, { name: 'go_forward', description: 'Navigate forward in browser history', inputSchema: { type: 'object', properties: { timeout: { type: 'number', description: 'Timeout in milliseconds', default: 30000, }, }, required: [], }, }, { name: 'reload_page', description: 'Reload the current page', inputSchema: { type: 'object', properties: { ignoreCache: { type: 'boolean', description: 'Whether to ignore cache during reload', default: false, }, timeout: { type: 'number', description: 'Timeout in milliseconds', default: 30000, }, }, required: [], }, }, ]; //# sourceMappingURL=navigation-tools.js.map