time vs claude-code-emacs
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | claude-code-emacs by yuya373 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 63 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Emacs Lisp |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
claude-code-emacs · Summary
Emacs package providing MCP integration for Claude Code, enabling AI-powered coding sessions with buffer and LSP operations.
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
claude-code-emacs · Use cases
- AI-assisted code refactoring and optimization within Emacs
- Real-time debugging with LSP diagnostic integration
- Automated code generation using project-specific prompts and custom commands
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"]
}
}
}claude-code-emacs · Install
# Install MCP server globally
npm install -g claude-code-mcp-server
# Configure Claude Code to use MCP
claude mcp add-json emacs '{
"type": "stdio",
"command": "claude-code-mcp"
}'
# Add to Emacs init.el
(add-to-list 'load-path "/path/to/claude-code")
(require 'claude-code)
(global-set-key (kbd "C-c c") 'claude-code-transient)