MCP Catalogs
Home

rec-us-mcp-server vs filesystem

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

rec-us-mcp-server
by elizabethsiegle
filesystem
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3777
Official
Categories
Browser AutomationProductivityWeb Scraping
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

rec-us-mcp-server · Summary

MCP server for San Francisco tennis court booking with authentication via browser automation.

filesystem · Summary

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

rec-us-mcp-server · Use cases

  • Automating tennis court reservations in San Francisco
  • Integrating booking capabilities into AI assistants like Claude
  • Creating personalized booking systems for specific users

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

rec-us-mcp-server · Install

Installation

  1. Deploy to Cloudflare Workers:

[![Deploy to Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)

  1. Or clone and deploy locally:
npm create cloudflare@latest -- tennis-booking-mcp --template=cloudflare/ai/demos/remote-mcp-authless
  1. Set required environment variables:
REC_EMAIL=your-sf-rec-email@example.com
REC_PASSWORD=your-sf-rec-password
  1. Configure wrangler.jsonc:
"ai": {
		"binding": "AI"
	},
	"browser": {
		"binding": "MYBROWSER"
	},

Connect to Claude Desktop

Install the [mcp-remote proxy](https://www.npmjs.com/package/mcp-remote) and update Claude Desktop's config:

{
  "mcpServers": {
    "tennis-booking": {
      "command": "npx",
      "args": [
        "mcp-remote", 
        "https://tennis-booking.<your-account>.workers.dev/sse"
      ]
    }
  }
}

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.