time vs mcp-oauth2.1-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-oauth2.1-server by QuantGeekDev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 8 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | SecurityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-oauth2.1-server · Summary
Reference MCP server implementing OAuth 2.1 authorization for secure access control.
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-oauth2.1-server · Use cases
- Securing MCP server access in enterprise environments
- Implementing authorization for MCP tools in client applications
- Creating authentication flow for MCP resources requiring access control
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-oauth2.1-server · Install
Installation
- Clone the repository
- Install dependencies:
``bash npm install ``
- Build the server:
``bash npm run build ``
- Start the server:
``bash npm run start ``
Configuration
Configure your authentication provider (Cognito or Keycloak) in the config folder and set environment variables in .envs.
For Claude Desktop, add to mcp.json:
{
"mcpServers": {
"oauth2-mcp": {
"command": "node",
"args": ["path/to/your/built/server.js"]
}
}
}