We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/freema/firefox-devtools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
navigate.md•636 B
---
description: Navigate Firefox to a URL and take a snapshot
argument-hint: <url>
---
# /firefox:navigate
Opens a URL in Firefox and takes a DOM snapshot for interaction.
## Usage
```
/firefox:navigate <url>
```
## Examples
```
/firefox:navigate https://example.com
/firefox:navigate https://github.com/login
/firefox:navigate file:///path/to/local.html
```
## What Happens
1. Calls `navigate_page` with the URL
2. Waits for page load
3. Calls `take_snapshot` to create UID mappings
4. Returns the DOM snapshot with interactive elements marked
After navigating, you can interact with elements using their UIDs (e.g., `e42`).