time vs docmole
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | docmole by Vigtu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsSearch |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
docmole · Summary
An MCP server that lets you query any documentation site with AI, supporting both local RAG and Mintlify-powered sites.
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
docmole · Use cases
- Search documentation directly from AI assistants like Claude or Cursor
- Build custom documentation search solutions for internal documentation
- Enable AI assistants to provide accurate, up-to-date information from documentation sources
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"]
}
}
}docmole · Install
Installation
Using bunx (no install needed):
bunx docmole --helpOr install globally:
bun install -g docmoleLocal RAG Mode
# One-time setup
bunx docmole setup --url https://docs.example.com --id my-docs
# Start the MCP server
bunx docmole serve --project my-docsMintlify Mode (zero setup)
bunx docmole -p agno-v2Claude Desktop Configuration
{
"mcpServers": {
"my-docs": {
"command": "bunx",
"args": ["docmole", "serve", "--project", "my-docs"]
},
"mintlify-docs": {
"command": "bunx",
"args": ["docmole", "-p", "agno-v2"]
}
}
}