mcp-echarts vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-echarts by hustcc | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 228 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper Toolsdata-visualization | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
mcp-echarts · Summary
MCP ECharts enables dynamic chart generation using ECharts through the Model Context Protocol.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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-echartsRun with SSE transport (default):
mcp-echarts -t sseOr with Streamable transport:
mcp-echarts -t streamableAccess at:
- SSE: http://localhost:3033/sse
- Streamable: http://localhost:3033/mcp
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}