MCP Catalogs
Home

filesystem vs uberall-mcp-server

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

filesystem
by modelcontextprotocol
uberall-mcp-server
by uberall
Stars★ 85,748★ 1
30d uses
Score7734
Official
Categories
File SystemDeveloper ToolsProductivity
ProductivityDeveloper ToolsCommunication
LanguageTypeScriptKotlin
Last committhis month11 mo ago

filesystem · Summary

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

uberall-mcp-server · Summary

Uberall MCP server provides business listing and social media management tools through AI assistants.

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

uberall-mcp-server · Use cases

  • Find and manage business listings through natural language queries
  • Create and schedule social media posts across multiple platforms
  • Monitor and filter existing social posts by location, status, and date

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.

uberall-mcp-server · Install

Installation Options

  1. **Download Pre-built JAR**

```bash # Download the latest release curl -L -o uberall-mcp-server.jar https://github.com/uberall/uberall-mcp-server/releases/latest/download/uberall-mcp-server.jar

# Set your credentials export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here"

# Run the server java -jar uberall-mcp-server.jar ```

  1. **Use Docker**

``bash export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here" docker run --rm -i -e UBERALL_ACCESS_TOKEN -e UBERALL_URL uberall/uberall-mcp-server:latest ``

  1. **Build from Source**

```bash git clone https://github.com/uberall/uberall-mcp-server.git cd uberall-mcp-server ./gradlew shadowJar

export UBERALL_URL="https://sandbox.uberall.com" export UBERALL_ACCESS_TOKEN="your_access_token_here" java -jar build/libs/uberall-mcp-server.jar ```

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "uberall-mcp-server": {
      "command": ["java", "-jar", "/path/to/uberall-mcp-server.jar"],
      "env": {
        "UBERALL_ACCESS_TOKEN": "your_access_token_here",
        "UBERALL_URL": "https://sandbox.uberall.com"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.