Skip to main content
Glama
Rainmen-xia

Chrome Debug MCP Server

by Rainmen-xia

scroll_down

Scrolls down a web page by one viewport height to view content below the current screen position during browser automation.

Instructions

向下滚动页面一个视口高度

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function scrollDown that executes the downward scrolling by calling doAction with scrollPage.
    async scrollDown(): Promise<BrowserActionResult> { return this.doAction(async (page) => { await this.scrollPage(page, "down"); }); }
  • Tool schema definition in the listTools response, including name, description, and empty input schema.
    { name: "scroll_down", description: "向下滚动页面一个视口高度", inputSchema: { type: "object", properties: {}, }, },
  • src/index.ts:203-205 (registration)
    Registration and dispatch in the CallToolRequestSchema handler switch statement.
    case "scroll_down": result = await this.browserSession.scrollDown(); break;
  • Helper function scrollPage that performs the actual scrolling logic using page.evaluate and window.scrollBy.
    private async scrollPage(page: Page, direction: "up" | "down"): Promise<void> { const { height } = this.getViewport(); const scrollAmount = direction === "down" ? height : -height; await page.evaluate((scrollHeight) => { window.scrollBy({ top: scrollHeight, behavior: "auto", }); }, scrollAmount); await delay(300); }

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/Rainmen-xia/chrome-debug-mcp'

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