Skip to main content
Glama

pilot_resume

Resume browser automation control after manual intervention by capturing a fresh page state snapshot for continued AI-driven task execution.

Instructions

Resume control after user handoff. Takes a fresh snapshot of the current page state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The registration and handler implementation for the 'pilot_resume' MCP tool.
    server.tool(
      'pilot_resume',
      'Resume control after user handoff. Takes a fresh snapshot of the current page state.',
      {},
      async () => {
        await bm.ensureBrowser();
        try {
          await bm.resume();
          const { takeSnapshot } = await import('../snapshot.js');
          const snapshot = await takeSnapshot(bm, { interactive: true });
          return { content: [{ type: 'text' as const, text: `RESUMED\n${snapshot}` }] };
        } catch (err) {
          return { content: [{ type: 'text' as const, text: wrapError(err) }], isError: true };
        }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/TacosyHorchata/Pilot'

If you have feedback or need assistance with the MCP directory API, please join our Discord server