time vs oatpp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | oatpp-mcp by oatpp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | C++ |
| Last commit | this month | 17 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
oatpp-mcp · Summary
C++ MCP server implementation for Oat++ framework with automated API tool generation.
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
oatpp-mcp · Use cases
- Enabling LLMs to query and interact with existing Oat++ REST APIs
- Building C++ applications that can leverage LLM capabilities through MCP integration
- Creating MCP servers for code review or logging systems using Oat++ framework
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"]
}
}
}oatpp-mcp · Install
Install oatpp-mcp
Prerequisites
- Install the main [oatpp](https://github.com/oatpp/oatpp) module
Build Steps
- Clone this repository
- In the repository root, run:
``bash mkdir build && cd build cmake .. make install ``
Claude Desktop Configuration
To use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"oatpp-mcp": {
"command": "path/to/your/oatpp-mcp-executable",
"args": []
}
}
}