time vs AgentChat
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | AgentChat by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 715 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| 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.
AgentChat · Summary
AgentChat is an LLM-based intelligent agent communication platform with MCP protocol support for dynamic tool calling and knowledge retrieval.
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
AgentChat · Use cases
- Enterprise knowledge management with RAG-enabled AI agents
- Multi-agent task automation and workflow orchestration
- Custom tool integration via OpenAPI-based MCP server generation
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"]
}
}
}AgentChat · Install
AgentChat MCP Server Installation
Docker Deployment
# 1. Clone the repository
git clone https://github.com/Shy2593666979/AgentChat.git
cd AgentChat
# 2. Edit configuration file
vim docker/docker_config.yaml
# 3. Start the service
cd docker
docker-compose up --build -dLocal Development
# Backend setup
cd src/backend
pip install -r requirements.txt
uv sync # Recommended
# Frontend setup
cd src/frontend
npm install
npm run devClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"agentchat": {
"command": "python",
"args": ["path/to/agentchat/mcp_server.py"]
}
}
}