MCP Catalogs
Home

hormuz-strait-mcp vs memory

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

hormuz-strait-mcp
by mcp-use
memory
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3777
Official
Categories
MonitoringAI / LLM ToolsOther
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

hormuz-strait-mcp · Summary

MCP server providing tactical maritime situation dashboard for Strait of Hormuz with interactive maps and ship tracking tools.

memory · Summary

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

hormuz-strait-mcp · Use cases

  • Monitor maritime traffic and security situation in the Strait of Hormuz in real-time
  • Analyze port traffic patterns and vessel movements across critical chokepoints
  • Query maritime disruption events and alert status for strategic decision making

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

hormuz-strait-mcp · Install

# Install dependencies
npm install

# Run in development mode
npm run dev

# Deploy to production
npm run deploy

To use with Claude Desktop, add to your config:

{
  "mcpServers": {
    "hormuz-strait": {
      "command": "npx",
      "args": ["hormuz-strait-mcp"]
    }
  }
}

For ChatGPT, add the MCP endpoint as a custom connector.

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.