MCP Catalogs
Home

everything vs IntelliConnect

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

everything
by modelcontextprotocol
IntelliConnect
by ruanrongman
Stars★ 85,748★ 118
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsOps & Infraiot
LanguageTypeScriptJava
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

IntelliConnect · Summary

An AI-powered IoT platform with MCP protocol support for smart device management and agent capabilities.

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

IntelliConnect · Use cases

  • Smart home device control and automation
  • Industrial IoT monitoring and management
  • Voice-controlled AI assistants for specialized domains

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

IntelliConnect · Install

Installation Options:

  1. Docker Deployment (Recommended)
cd docker
docker-compose up

This initializes MySQL, Redis, EMQX, and InfluxDB environments.

  1. Manual Installation
  • Install Java 21 environment
  • Install MySQL and Redis (InfluxDB recommended for high performance)
  • Install EMQX cluster and configure exhook
  • Modify application.yaml (set ddl-auto to update mode)
  • Run: java -jar IntelliConnect-1.8-SNAPSHOT.jar

Claude Desktop MCP Configuration:

{
  "mcpServers": {
    "intelliconnect": {
      "command": "java",
      "args": ["-jar", "path/to/IntelliConnect-1.8-SNAPSHOT.jar"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.