fetch vs IntelliConnect
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | IntelliConnect by ruanrongman | |
|---|---|---|
| Stars | ★ 85,748 | ★ 118 |
| 30d uses | — | — |
| Score | 76 | 44 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | AI / LLM ToolsOps & Infraiot |
| Language | TypeScript | Java |
| Last commit | this month | this month |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
IntelliConnect · Summary
An AI-powered IoT platform with MCP protocol support for smart device management and agent capabilities.
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
IntelliConnect · Use cases
- Smart home device control and automation
- Industrial IoT monitoring and management
- Voice-controlled AI assistants for specialized domains
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}IntelliConnect · Install
Installation Options:
- Docker Deployment (Recommended)
cd docker
docker-compose upThis initializes MySQL, Redis, EMQX, and InfluxDB environments.
- 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": {}
}
}
}