mcp-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by configcat | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-server · Summary
ConfigCat MCP server provides tool access to feature flag and configuration management through ConfigCat's public API.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server · Use cases
- Managing feature flags and configurations directly from code editors
- Automating feature flag workflow management through MCP-enabled clients
- Generating SDK documentation and code examples for new feature implementations
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-server · Install
Installation
Install the MCP server via npm:
npm install -g @configcat/mcp-serverClaude Desktop Configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"ConfigCat": {
"command": "npx",
"args": ["-y", "@configcat/mcp-server"],
"env": {
"CONFIGCAT_API_USER": "YOUR_API_USER",
"CONFIGCAT_API_PASS": "YOUR_API_PASSWORD"
}
}
}
}Visual Studio Code
Create a .vscode/mcp.json file:
{
"servers": {
"ConfigCat": {
"command": "npx",
"args": ["-y", "@configcat/mcp-server"],
"env": {
"CONFIGCAT_API_USER": "YOUR_API_USER",
"CONFIGCAT_API_PASS": "YOUR_API_PASSWORD"
}
}
}
}Cursor
- Open
Preferences→Cursor Settings→MCP & Integrations - Click
Add Custom MCP - Add the server definition with the JSON above.
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"]
}
}
}