AI-powered browser automation MCP — 6 tools for web interaction, extraction, and validation.
MCPpedia last refreshed this data
io.github.AINative-Studio/ainative-browser-mcp is an MCP server that AI-powered browser automation MCP — 6 tools for web interaction, extraction, and validation. Its tool list has not been published yet over stdio, requires no API key, and scores 87/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"browser": {
"env": {
"AINATIVE_API_KEY": "ak_your_key_here"
},
"args": [
"@ainative/browser-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AINative Browser Agent MCP Server. Gives AI agents browser automation capabilities — act on pages, extract structured data, validate content, run multi-step tasks, and enrich agent memory from the web.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@ainative/browser-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @ainative/browser-mcp against OSV.dev.
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 / ai-ml
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
The official MCP server implementation for the Perplexity API Platform
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for io.github.AINative-Studio/ainative-browser-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AINative Browser Agent MCP Server. Gives AI agents browser automation capabilities — act on pages, extract structured data, validate content, run multi-step tasks, and enrich agent memory from the web.
Auto-detects ZeroLocal (localhost:8000) or AINative Cloud.
npx @ainative/browser-mcp
Or install globally:
npm install -g @ainative/browser-mcp
{
"mcpServers": {
"browser": {
"command": "npx",
"args": ["@ainative/browser-mcp"],
"env": {
"AINATIVE_API_KEY": "ak_your_key_here"
}
}
}
}
| Tool | Description | Credits |
|---|---|---|
browser_act | Perform an action on a web page (click, type, navigate) | 50 |
browser_extract | Extract structured data from a page | 75 |
browser_validate | Validate content or state on a page | 25 |
browser_task | Run a multi-step automation task | 200 |
browser_extract_to_table | Extract data and store in ZeroDB table | 100 |
browser_enrich_memory | Extract content and store in agent memory | 100 |
Set one of the following:
# API key (recommended)
AINATIVE_API_KEY=ak_your_key_here
# OR username/password
AINATIVE_USERNAME=you@example.com
AINATIVE_PASSWORD=your_password
Get your API key from ainative.studio/dashboard.
The server auto-detects ZeroLocal running on localhost:8000. If ZeroLocal is running, it is used automatically — no configuration needed. Otherwise it falls back to AINative Cloud.
To run ZeroLocal:
pip install zerodb-local
zerodb serve
Extract product data:
{
"tool": "browser_extract",
"arguments": {
"url": "https://example.com/products",
"extract_goal": "Extract all product names and prices"
}
}
Perform an action:
{
"tool": "browser_act",
"arguments": {
"url": "https://example.com",
"instruction": "Click the sign in button",
"max_steps": 5
}
}
Store page content in agent memory:
{
"tool": "browser_enrich_memory",
"arguments": {
"url": "https://example.com/blog/post",
"extract_goal": "Extract key facts about the product",
"memory_type": "semantic",
"project_id": "your-project-id"
}
}