Notte MCP
Notte MCP Server manages sessions, runs agents, and controls web scraping and interactions efficiently. It integrates LLM apps with external tools for reliable AI-powered workflows.
How to Install and Use Notte MCP
If you want to control web browsers, run agents, and scrape web pages in a simple way, Notte MCP is a great tool to use. It helps you manage sessions and interact with web pages easily. Here is how you can install it and start using it step-by-step.
Installing Notte MCP
Before you start, you need to install some software to get Notte MCP ready.
To install Notte MCP, just open your command prompt or terminal and type this:
pip install notte-mcp
This command will download and install everything you need for Notte MCP to work.
Setting Up Environment Variables
After installing, you need to tell Notte MCP who you are by adding your API key. This key is like a password to use the tool.
You can set this in your terminal by typing:
export NOTTE_API_KEY="your-api-key"
Replace "your-api-key" with your actual key. Setting this environment variable helps Notte MCP connect safely.
Starting the MCP Server
Once installed and set up, you can start the server that runs Notte MCP.
Run this command in your terminal:
python -m notte_mcp.server
This will start the server locally on your computer. If you want to work on developing or changing the server, you can start the dev server with this:
uv run mcp dev packages/notte-mcp/src/notte_mcp/server.py --with-editable .
Using MCP with Other Tools
Notte MCP can work with tools like Cursor or Claude Computer. To do this, you can use a JSON configuration like this:
{
"notte-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8001/sse"
],
"env": {
"NOTTE_API_KEY": "<your-notte-api-key>"
}
}
}
You just need to replace <your-notte-api-key> with your actual API key. This setup helps other tools talk to your MCP server.
Example Commands You Can Use
Here are some simple commands you can say or type to interact with Notte MCP:
-
To start a new browser session:
Can you start a new cloud browser session? -
To check if there are any active sessions:
Can you check if I have any notte sessions active at the moment? -
To ask the agent to do a task like checking prices on a website:
Can you look for the price of Airforce 1 on the Nike website, men's section? Please show me the browser visualizer so I can track progress live.
Using these commands, Notte MCP will control the browser and get you the data you want.
With these easy steps, you can get Notte MCP installed, running, and interacting with websites quickly. It’s a powerful way to manage browser sessions and automate web tasks. Just follow each step in order, and you’ll be up and running in no time!