The Steel MCP Server provides a Model Context Protocol server for LLMs like Claude, allowing them to interact with the web through Puppeteer-based tools and Steel. Based on the Web Voyager framework, it enables Claude to perform web actions like clicking, scrolling, typing, and taking screenshots to help with tasks such as searching for recipes, tracking packages, comparing prices, or filling out forms.
Clone and build the project:
git clone https://github.com/steel-dev/steel-mcp-server.git
cd steel-mcp-server
npm install
npm run build
Configure Claude Desktop by editing ~/Library/Application Support/Claude/claude_desktop_config.json
:
{
"mcpServers": {
"steel-puppeteer": {
"command": "node",
"args": ["path/to/steel-voyager/dist/index.js"],
"env": {
"STEEL_LOCAL": "false",
"STEEL_API_KEY": "YOUR_STEEL_API_KEY_HERE",
"GLOBAL_WAIT_SECONDS": "1"
}
}
}
}
Start Claude Desktop, which will automatically launch the MCP server in Cloud mode.
You can view active Steel Browser sessions in your dashboard.
Ensure your local Steel service is running (using the open-source Steel Docker image).
Clone and build the project (if not done already):
git clone https://github.com/steel-dev/steel-mcp-server.git
cd steel-mcp-server
npm install
npm run build
Configure Claude Desktop for local mode:
{
"mcpServers": {
"steel-puppeteer": {
"command": "node",
"args": ["path/to/steel-voyager/dist/index.js"],
"env": {
"STEEL_LOCAL": "true",
"STEEL_BASE_URL": "http://localhost:3000",
"GLOBAL_WAIT_SECONDS": "1"
}
}
}
}
Start Claude Desktop, which will connect to your local Steel instance.
You can also install Steel MCP Server automatically using Smithery:
npx -y @smithery/cli install @steel-dev/steel-mcp-server --client claude
Once configured and running, Claude can use several tools to interact with web pages:
navigate
url: "https://example.com"
search
query: "steel browser automation"
click
label: 5
type
label: 3
text: "Hello world"
replaceText: true
(optional)scroll_down
pixels: 500
(optional)scroll_up
pixels: 300
(optional)go_back
wait
seconds: 5
save_unmarked_screenshot
resourceName: "shopping_results"
(optional)When interacting with pages, Steel MCP Server adds visual overlays:
Steel MCP Server can run in either "Local" or "Cloud" mode through these environment variables:
Variable | Default | Description |
---|---|---|
STEEL_LOCAL | "false" | "true" for local mode, "false" for cloud mode |
STEEL_API_KEY | (none) | Required for cloud mode |
STEEL_BASE_URL | "https://api.steel.dev" | Base URL for Steel API (override if self-hosting) |
GLOBAL_WAIT_SECONDS | (none) | Seconds to wait after each tool action |
If you encounter issues:
GLOBAL_WAIT_SECONDS
if pages aren't rendering correctlyThere are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.