time vs sequential-thinking-mcp-v2
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | sequential-thinking-mcp-v2 by spideynolove | |
|---|---|---|
| Stars | ★ 85,748 | ★ 8 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
sequential-thinking-mcp-v2 · Summary
A structured reasoning MCP server with session persistence and memory management
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
sequential-thinking-mcp-v2 · Use cases
- Long-running coding agent work with persistent memory
- Complex problem-solving requiring structured reasoning
- Project management with maintained reasoning context
- Handoff between different AI agents or sessions
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"]
}
}
}sequential-thinking-mcp-v2 · Install
Installation
- Clone the repository:
git clone https://github.com/spideynolove/sequential-thinking-mcp-v2.git
cd sequential-thinking-mcp-v2- Install dependencies and run the server:
uv sync
uv run main.py- For Claude Desktop integration, add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"sequential-thinking": {
"command": "python",
"args": ["main.py"],
"cwd": "/path/to/sequential-thinking-mcp-v2"
}
}
}