Notte

Leverage Notte Web AI agents & cloud browser sessions for scalable browser automation & scraping workflows

Notte MCP Server

Available Tools

Session Management

ToolDescription
notte_start_sessionStart a new cloud browser session
notte_list_sessionsList all active browser sessions
notte_stop_sessionStop the current session

Page Interaction & Scraping

ToolDescription
notte_observeObserve elements and available actions on the current page
notte_screenshotTake a screenshot of the current page
notte_scrapeExtract structured data from the current page
notte_stepExecute an action on the current page

Agent Operations

ToolDescription
notte_operatorRun a Notte agent to complete a task on any website

Getting Started

  1. Install the required dependencies:
pip install notte-mcp
  1. Set up your environment variables:
export NOTTE_API_KEY="your-api-key"
  1. Start the MCP server:
python -m notte_mcp.server

note: you can also start the server locally using uv run mcp dev packages/notte-mcp/src/notte_mcp/server.py --with-editable .

To use the MCP in cursor or claude computer use, you can use the following json:

{
    "mcpServers": {
        "notte-mcp": {
            "url": "http://localhost:8000/sse",
            "env": {
                "NOTTE_API_KEY": "<your-notte-api-key>"
            }
        }
    }
}

For integration in Claude Desktop, you can run the following command:

# Make sure that NOTTE_API_KEY is set in your .env file
uv run fastmcp install src/notte_mcp/server.py -f .env
uv run mcp install src/notte_mcp/server.py -v NOTTE_API_KEY=$NOTTE_API_KEY

check out the $HOME/Library/Application Support/Claude/claude_desktop_config.json file to see the installed MCP servers.

Claude Desktop examples:

> Can you look for the price of airforce 1 on the nike website (men's section) ? Please show me the browser visualizer so that I can track the progress live
> Can ou check out if I have any notte session active at the moment ?

Cursor examples:

Related Servers