Cline is an AI-powered coding assistant that can be extended with Model Context Protocol (MCP) plugins. This guide explains how to integrate Stagehand’s MCP server with Cline to enable web automation capabilities directly from your coding environment.

Integrating Stagehand MCP Server with Cline

By adding Stagehand’s MCP server to Cline, you can enable your AI coding assistant Cline to interact with web browsers, perform web automation tasks, and extract data from websites.

Prerequisites

  • Cline installed and configured in your development environment (extension installed in VSCode)
  • A Browserbase account with API key and project ID
  • LLM API key (e.g., OpenAI API key, Anthropic API key, etc.)
  • Node.js and npm installed

Setup Instructions

  1. Ask Cline to install the Stagehand MCP server from the GitHub link.
Cline, I want to add the Stagehand  MCP server for AI-powered web automation. Here's the GitHub link: @https://github.com/browserbase/mcp-server-browserbase/tree/main/stagehand
Can you add it?

Cline will pull and install the Stagehand MCP server. It will also ask you to add the necessary environment variables.

BROWSERBASE_API_KEY=your_browserbase_api_key
BROWSERBASE_PROJECT_ID=your_browserbase_project_id
OPENAI_API_KEY=your_openai_api_key
# Alternatively, you can use Anthropic API key
ANTHROPIC_API_KEY=your_anthropic_api_key
  1. Add Cline rules

Since Cline has more tools than Stagehand, we need to add rules to Cline to use the Stagehand tools for web automation.

Add the following rules to Cline (.clinerules file):

  1. Restart Cline or reload your editor extension.

That’s it! You can now use Stagehand’s MCP server in Cline.

Available Commands

When integrated with Cline, your AI assistant can use the following Stagehand commands:

  • stagehand_navigate: Navigate to any URL in the browser
  • stagehand_act: Perform an action on a web page
  • stagehand_extract: Extract data from a web page based on instructions
  • stagehand_observe: Observe actions that can be performed on a web page

Example Usage

Here’s an example of how to use Stagehand with Cline in your workflow:

  1. Ask your AI assistant in Cline to perform a web task, such as: “Can you search for the latest React documentation and extract the main concepts?”

  2. The AI will use Stagehand’s MCP commands to:

    • Navigate to the React documentation website
    • Interact with the search functionality
    • Extract the relevant information
    • Return the results directly in your coding environment

Benefits of Integration

  • Perform web research without leaving your code editor
  • Automate repetitive web tasks from your development environment
  • Extract data from websites to use in your code
  • Build more powerful AI-assisted coding workflows

View the browser session in Browserbase

You can view the browser session in Browserbase by going to the Browserbase dashboard and clicking on the “Sessions” tab.

Troubleshooting

If you encounter issues with the integration:

  1. Ensure the MCP server is running
  2. Check that your environment variables are set correctly
  3. Verify that Cline is properly configured to use the MCP server
  4. Check the MCP server logs for any error messages

Further Resources