MCP Catalogs
Home

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
Score7748
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis 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 init

This will walk you through connecting your coding agent and adding to your app. For manual setup:

  1. 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()],
});
  1. Connect your coding agent (example for Claude Desktop):

Add to Claude's config.json:

{
  "mcpServers": {
    "domscribe": {
      "command": "npx",
      "args": ["domscribe", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.