time vs chatgpt2md
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | chatgpt2md by NextStat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsProductivityFile System |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
chatgpt2md · Summary
ChatGPT to Markdown converter with full-text search and MCP server for accessing conversations in Claude.
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
chatgpt2md · Use cases
- Access ChatGPT conversation history directly in Claude for contextual reference
- Search and retrieve specific conversations from large ChatGPT exports
- Archive ChatGPT chats in a readable Markdown format with full-text search capabilities
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"]
}
}
}chatgpt2md · Install
Installation
Quick Install
cargo install --git https://github.com/NextStat/chatgpt2mdBinary Installation
- Download the appropriate binary for your platform from [Releases](https://github.com/NextStat/chatgpt2md/releases)
- Extract and move to PATH:
``bash tar xzf chatgpt2md-*.tar.gz sudo mv chatgpt2md /usr/local/bin/ ``
Claude Configuration
chatgpt2md install --index ./chatgpt_chats/.index --chats ./chatgpt_chatsManual Claude Desktop Configuration
Edit Claude Desktop config file:
- **macOS:**
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows:**
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"chatgpt-history": {
"command": "/path/to/chatgpt2md",
"args": ["serve", "--index", "/path/to/chatgpt_chats/.index", "--chats", "/path/to/chatgpt_chats"]
}
}
}