time vs mcp-server-llamacloud
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-server-llamacloud by run-llama | |
|---|---|---|
| Stars | ★ 85,748 | ★ 86 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-llamacloud · Summary
MCP server connecting to LlamaCloud managed indexes, providing search tools for various document repositories.
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-server-llamacloud · Use cases
- Search SEC financial documents for Tesla and Apple 10K reports
- Query custom document collections stored in LlamaCloud indexes
- Enable AI assistants to retrieve information from private knowledge bases
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"]
}
}
}mcp-server-llamacloud · Install
Install via npm: npx @llamaindex/mcp-server-llamacloud
Configuration for Claude Desktop:
{
"mcpServers": {
"llamacloud": {
"command": "npx",
"args": [
"-y",
"@llamaindex/mcp-server-llamacloud",
"--index",
"10k-SEC-Tesla",
"--description",
"10k SEC documents from 2023 for Tesla",
"--topK",
"5"
],
"env": {
"LLAMA_CLOUD_API_KEY": "<YOUR_API_KEY>"
}
}
}
}