AzureMCP-demo vs time
Side-by-side comparison to help you pick between these two MCP servers.
AzureMCP-demo by AbhijithGanesh | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 27 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsCloud StorageDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
AzureMCP-demo · Summary
A dual-language (Python/TypeScript) tutorial implementation of an MCP server for Azure services with clear setup instructions.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
AzureMCP-demo · Use cases
- Learning how to implement an MCP server for Azure cloud services
- Creating integration between AI assistants and Azure resources
- Developing custom tools to interact with Azure API endpoints
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
AzureMCP-demo · Install
Installation
Prerequisites
- [Bun](https://bun.sh/) package manager installed
- Azure subscription
- Python 3.12+ (for Python implementation)
- Node.js/TypeScript environment (for TypeScript implementation)
Python Implementation
cd custom-mcp-server/python3
python -m venv .venv
source .venv/bin/activate
pip install -e .TypeScript Implementation
cd custom-mcp-server/typescript
bun installRunning the Server
./start-server.shClaude Desktop Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"azure-mcp": {
"command": "python",
"args": ["/path/to/AzureMCP-demo/custom-mcp-server/python3/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"]
}
}
}