time vs razorpay-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | razorpay-mcp-server by razorpay | |
|---|---|---|
| Stars | ★ 85,748 | ★ 220 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceDeveloper ToolsE-commerce |
| Language | TypeScript | Go |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
razorpay-mcp-server · Summary
Official Razorpay MCP Server for payment processing with remote/local setup options.
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
razorpay-mcp-server · Use cases
- Automating payment workflows in business applications
- Building AI-powered payment processing assistants
- Integrating Razorpay capabilities into development environments
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"]
}
}
}razorpay-mcp-server · Install
Installation
Remote Server (Recommended)
For Remote MCP Server, you only need Node.js installed (which includes npm and npx):
# Install Node.js using Homebrew (macOS)
brew install node
# Or using Chocolatey (Windows)
choco install nodejsConfiguration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"rzp-mcp-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.razorpay.com/mcp",
"--header",
"Authorization: Basic <Merchant Token>"
]
}
}
}Replace <Merchant Token> with your Razorpay merchant token.