ClaudeR vs time
Side-by-side comparison to help you pick between these two MCP servers.
ClaudeR by IMNMV | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 227 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
ClaudeR · Summary
ClaudeR bridges RStudio with MCP-based LLM agents for interactive coding, multi-agent orchestration, and automated manuscript auditing.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
ClaudeR · Use cases
- Interactive data analysis with real-time code execution in RStudio
- Automated manuscript auditing and statistical verification
- Multi-agent collaborative coding on R scripts
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
ClaudeR · Install
Installation
# Install using devtools
if (!require("devtools")) install.packages("devtools")
devtools::install_github("IMNMV/ClaudeR")
# Set up your AI tool
library(ClaudeR)
install_clauder() # For Claude Desktop / Cursor
install_cli(tools = "claude") # For Claude Code CLI
# Start the server in RStudio
claudeAddin()For Claude Desktop configuration, add to Claude Desktop's config.json:
{
"mcpServers": {
"clauder": {
"command": "Rscript",
"args": ["-e", "library(ClaudeR); claudeServe()"],
"env": {
"R_PROFILE_USER": ""
}
}
}
}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"]
}
}
}