chore: remove navigate_forward due to low usage counts (#934)

This commit is contained in:
Pavel Feldman
2025-08-22 14:02:33 -07:00
committed by GitHub
parent 2521a67b2f
commit 86eba2245a
5 changed files with 8 additions and 38 deletions

View File

@@ -56,24 +56,7 @@ const goBack = defineTabTool({
},
});
const goForward = defineTabTool({
capability: 'core',
schema: {
name: 'browser_navigate_forward',
title: 'Go forward',
description: 'Go forward to the next page',
inputSchema: z.object({}),
type: 'readOnly',
},
handle: async (tab, params, response) => {
await tab.page.goForward();
response.setIncludeSnapshot();
response.addCode(`await page.goForward();`);
},
});
export default [
navigate,
goBack,
goForward,
];