time vs csv-editor
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | csv-editor by santoshray02 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsProductivitydata-analysis |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
csv-editor · Summary
Stateful CSV editing MCP server with 39 pandas-powered tools, sessions, undo/redo and auto-save features.
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
csv-editor · Use cases
- Data cleaning and preprocessing for analysts to remove duplicates, fix data types, and handle missing values
- ETL pipelines with complex transformations like filtering, aggregating, and converting between data formats
- Data quality assurance through schema validation, outlier detection, and comprehensive quality scoring
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"]
}
}
}csv-editor · Install
Installing via Smithery
npx -y @smithery/cli install @santoshray02/csv-editor --client claudeFastest Installation (Recommended)
# Install uv if needed (one-time setup)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Clone and run
git clone https://github.com/santoshray02/csv-editor.git
cd csv-editor
uv sync
uv run csv-editorClaude Desktop Configuration
Add to your claude_desktop_config.json:
- **macOS:**
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows:**
%APPDATA%\Claude\claude_desktop_config.json - **Linux:**
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"csv-editor": {
"command": "uv",
"args": ["tool", "run", "csv-editor"],
"env": {
"CSV_MAX_FILE_SIZE": "1073741824"
}
}
}
}