MCP Catalogs
Home

pophive-mcp-server vs memory

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

pophive-mcp-server
by Cicatriiz
memory
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4077
Official
Categories
AI / LLM ToolshealthDatabase
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit10 mo agothis month

pophive-mcp-server · Summary

MCP server providing access to Yale's PopHIVE public health data with comprehensive tools for health surveillance analysis.

memory · Summary

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

pophive-mcp-server · Use cases

  • Epidemiologists analyzing vaccination coverage gaps and disease spread patterns
  • Public health researchers comparing health metrics across multiple states
  • Healthcare professionals monitoring real-time respiratory disease surveillance data

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

pophive-mcp-server · Install

Installation

Option 1: Desktop Extension (Recommended)

**For Claude Desktop users:**

  1. Download the .dxt file from the releases page
  2. Double-click the file to open with Claude Desktop
  3. Click "Install" in the installation dialog
  4. Configure any required settings (update frequency, cache size)
  5. The extension will be automatically available in Claude Desktop

**For other MCP-enabled applications:**

  • Use the same .dxt file with any application supporting Desktop Extensions
  • Follow your application's extension installation process

Option 2: Manual Installation

**Prerequisites:**

  • Node.js 18+
  • npm or yarn

**Setup:**

  1. Clone and install dependencies:
git clone <repository-url>
cd pophive-mcp-server
npm install
  1. Configure environment (optional):
# Create .env file for custom configuration
echo "DATA_CACHE_DIR=./data" > .env
echo "UPDATE_FREQUENCY=daily" >> .env
  1. Test the server:
npm test
  1. Start the server:
npm start

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "pophive": {
      "command": "node",
      "args": ["server/index.js"],
      "cwd": "/path/to/pophive-mcp-server"
    }
  }
}

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.