MCP Catalogs
Home

mcp-aoai-web-browsing vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-aoai-web-browsing
by kimtth
filesystem
by modelcontextprotocol
Stars★ 33★ 85,748
30d uses
Score4177
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit2 mo agothis month

mcp-aoai-web-browsing · Summary

MCP server with Playwright browser automation via FastMCP, supporting both Azure and OpenAI APIs.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-aoai-web-browsing · Use cases

  • Web automation and testing through LLM interactions
  • Browser-based data extraction and analysis
  • AI-powered web navigation assistance

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-aoai-web-browsing · Install

# Install uv for dependency management
pip install uv

# Install dependencies
uv sync

# Run the application
python chatgui.py

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "browser-navigator": {
      "command": "uv",
      "args": ["run", "fastmcp", "run", "./server/browser_navigator_server.py:app"],
      "cwd": "/path/to/mcp-aoai-web-browsing",
      "env": {
        "AZURE_OPEN_AI_ENDPOINT": "...",
        "AZURE_OPEN_AI_API_KEY": "...",
        "AZURE_OPEN_AI_DEPLOYMENT_MODEL": "...",
        "AZURE_OPEN_AI_API_VERSION": "..."
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.