MCP Catalogs
Home

mcp-echarts vs everything

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

mcp-echarts
by hustcc
everything
by modelcontextprotocol
Stars★ 228★ 85,748
30d uses
Score4877
Official
Categories
AI / LLM ToolsDeveloper Toolsdata-visualization
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

mcp-echarts · Summary

MCP ECharts enables dynamic chart generation using ECharts through the Model Context Protocol.

everything · Summary

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

mcp-echarts · Use cases

  • Generate visual data representations for AI analysis and reporting
  • Create charts and graphs from data processed by AI models
  • Share generated charts via URLs using cloud storage integration

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

mcp-echarts · Install

Installation

Prerequisites

  • Node.js 18 or higher

Desktop Applications (stdio transport)

Add the MCP server config to your desktop application:

{
  "mcpServers": {
    "mcp-echarts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-echarts"
      ]
    }
  }
}

Running with SSE or Streamable transport

Install globally:

npm install -g mcp-echarts

Run with SSE transport (default):

mcp-echarts -t sse

Or with Streamable transport:

mcp-echarts -t streamable

Access at:

  • SSE: http://localhost:3033/sse
  • Streamable: http://localhost:3033/mcp

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
Comparison generated from public README + GitHub signals. Last updated automatically.