MCP Catalogs
Home

rec-us-mcp-server vs memory

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

rec-us-mcp-server
by elizabethsiegle
memory
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3777
Official
Categories
Browser AutomationProductivityWeb Scraping
Knowledge GraphAI / LLM 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.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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"
      ]
    }
  }
}

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.