pophive-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
pophive-mcp-server by Cicatriiz | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolshealthDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 10 mo ago | this month |
pophive-mcp-server · Summary
MCP server providing access to Yale's PopHIVE public health data with comprehensive tools for health surveillance analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
pophive-mcp-server · Install
Installation
Option 1: Desktop Extension (Recommended)
**For Claude Desktop users:**
- Download the
.dxtfile from the releases page - Double-click the file to open with Claude Desktop
- Click "Install" in the installation dialog
- Configure any required settings (update frequency, cache size)
- The extension will be automatically available in Claude Desktop
**For other MCP-enabled applications:**
- Use the same
.dxtfile 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:**
- Clone and install dependencies:
git clone <repository-url>
cd pophive-mcp-server
npm install- Configure environment (optional):
# Create .env file for custom configuration
echo "DATA_CACHE_DIR=./data" > .env
echo "UPDATE_FREQUENCY=daily" >> .env- Test the server:
npm test- Start the server:
npm startClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"pophive": {
"command": "node",
"args": ["server/index.js"],
"cwd": "/path/to/pophive-mcp-server"
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything