python-mcp-server-client vs time
Side-by-side comparison to help you pick between these two MCP servers.
python-mcp-server-client by GobinFan | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 155 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
python-mcp-server-client · Summary
A MCP server for querying technical documentation of major AI agent frameworks like LangChain and LlamaIndex.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
python-mcp-server-client · Use cases
- Retrieve documentation for specific framework features
- Search across multiple AI frameworks simultaneously
- Integrate technical documentation into AI agents for accurate responses
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
python-mcp-server-client · Install
Installation
- Install UV package manager:
# MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Initialize project:
uv init mcp-server
cd mcp-server
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv add "mcp[cli]" httpx- Configure Claude Desktop:
{
"mcpServers": {
"docs-server": {
"command": "uv",
"args": [
"--directory",
"<your-project-path>",
"run",
"main.py"
]
}
}
}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"]
}
}
}