hormuz-strait-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
hormuz-strait-mcp by mcp-use | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | MonitoringAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
hormuz-strait-mcp · Summary
MCP server providing tactical maritime situation dashboard for Strait of Hormuz with interactive maps and ship tracking tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
hormuz-strait-mcp · Install
# Install dependencies
npm install
# Run in development mode
npm run dev
# Deploy to production
npm run deployTo 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.
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