time vs domscribe
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | domscribe by patchorbit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 168 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
domscribe · Summary
Domscribe bridges the gap between running web applications and their source code via MCP, enabling AI agents to view live UI context and make targeted edits.
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
domscribe · Use cases
- AI agents inspect live UI state by querying source code locations to understand rendered components
- Developers point to UI elements and describe changes in plain English for AI implementation
- Cross-framework development with stable DOM-to-source mapping across hot reloads
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"]
}
}
}domscribe · Install
Install using the setup wizard:
npx domscribe initThis will walk you through connecting your coding agent and adding to your app. For manual setup:
- Add to your bundler/framework (example for React with Vite):
npm install -D @domscribe/react// vite.config.ts
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { domscribe } from '@domscribe/react/vite';
export default defineConfig({
plugins: [react(), domscribe()],
});- Connect your coding agent (example for Claude Desktop):
Add to Claude's config.json:
{
"mcpServers": {
"domscribe": {
"command": "npx",
"args": ["domscribe", "mcp"]
}
}
}