MCP Catalogs
Home

time vs tauri-plugin-mcp

Side-by-side comparison to help you pick between these two MCP servers.

time
by modelcontextprotocol
tauri-plugin-mcp
by P3GLEG
Stars★ 85,748★ 96
30d uses
Score7748
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsBrowser AutomationProductivity
LanguageTypeScriptRust
Last committhis monththis month

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

tauri-plugin-mcp · Summary

Tauri plugin enabling AI agents to debug applications through screenshots, DOM access, and input simulation.

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

tauri-plugin-mcp · Use cases

  • Automated UI testing and debugging of Tauri applications by AI agents
  • Visual regression testing and automated bug reporting in desktop apps
  • AI-powered development assistance for cross-platform desktop applications

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"]
    }
  }
}

tauri-plugin-mcp · Install

Installation

  1. **Install the Tauri plugin**:
npm install tauri-plugin-mcp
  1. **Register the plugin in your Tauri app**:
#[cfg(debug_assertions)]
{
    builder = builder.plugin(tauri_plugin_mcp::init_with_config(
        tauri_plugin_mcp::PluginConfig::new("APPLICATION_NAME".to_string())
            .start_socket_server(true)
            .socket_path("/tmp/tauri-mcp.sock")
    ));
}
  1. **Configure your AI agent** (e.g., Claude Desktop):
{
  "mcpServers": {
    "tauri-mcp": {
      "command": "npx",
      "args": ["tauri-plugin-mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.