everything vs IntelliConnect
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | IntelliConnect by ruanrongman | |
|---|---|---|
| Stars | ★ 85,748 | ★ 118 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具运维基建iot |
| 实现语言 | TypeScript | Java |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
IntelliConnect · 概述
支持MCP协议的AI物联网平台,提供智能设备管理和Agent功能
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
IntelliConnect · 使用场景
- 智能家居设备控制与自动化
- 工业物联网监控与管理
- 专业化领域的语音控制AI助手
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingIntelliConnect · 安装
安装选项:
- Docker部署(推荐)
cd docker
docker-compose up这将初始化MySQL、Redis、EMQX和InfluxDB环境。
- 手动安装
- 安装Java 21环境
- 安装MySQL和Redis(推荐InfluxDB以获得高性能)
- 安装EMQX集群并配置exhook
- 修改application.yaml(将ddl-auto设置为update模式)
- 运行:
java -jar IntelliConnect-1.8-SNAPSHOT.jar
Claude Desktop MCP配置:
{
"mcpServers": {
"intelliconnect": {
"command": "java",
"args": ["-jar", "path/to/IntelliConnect-1.8-SNAPSHOT.jar"],
"env": {}
}
}
}