MCP server for browser automation using Rod (Go). Perfect for testing HTMX-R applications.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rod": {
"command": "/path/to/rod-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for browser automation using Rod.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
Multi-engine MCP server, CLI, and local daemon for agent web search and content retrieval — skill-guided workflows, no API keys.
MCP Security Weekly
Get CVE alerts and security updates for Rod Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for browser automation using Rod.
Perfect for testing HTMX-R applications and automating browser interactions.
data-state-* attributesgo install github.com/birddigital/rod-mcp-server@latest
Or build from source:
git clone https://github.com/birddigital/rod-mcp-server
cd rod-mcp-server
go build -o rod-mcp main.go
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"rod": {
"command": "/path/to/rod-mcp"
}
}
}
rod_navigateNavigate to a URL.
Arguments:
url (string, required): URL to navigate torod_clickClick an element by CSS selector.
Arguments:
selector (string, required): CSS selectorrod_screenshotTake a screenshot.
Arguments:
filename (string, optional): Filename (default: timestamp)fullPage (boolean, optional): Capture full page (default: false)Screenshots saved to: /tmp/rod-screenshots/
rod_get_attributeGet an HTML attribute value (perfect for HTMX-R state).
Arguments:
selector (string, required): CSS selectorattribute (string, required): Attribute namerod_get_textGet text content of an element.
Arguments:
selector (string, required): CSS selectorrod_wait_forWait for an element to appear.
Arguments:
selector (string, required): CSS selectortimeout (number, optional): Timeout in seconds (default: 30)rod_evalExecute JavaScript in the page context.
Arguments:
script (string, required): JavaScript coderod_fillFill an input field.
Arguments:
selector (string, required): CSS selector for inputtext (string, required): Text to fillUse rod_navigate to go to http://localhost:8080
Use rod_get_attribute on "[data-state-demo]" for attribute "data-state-demo"
Result: "hidden"
Use rod_click on "button[hx-state-toggle='demo']"
Use rod_get_attribute on "[data-state-demo]" for attribute "data-state-demo"
Result: "visible"
Use rod_navigate to go to http://localhost:8080
Use rod_screenshot with fullPage: true, filename: "landing-page.png"
Result: Screenshot saved to /tmp/rod-screenshots/landing-page.png
MIT