MCP Catalogs
Home

time vs mcp-sdk-client-ssejs

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

time
by modelcontextprotocol
mcp-sdk-client-ssejs
by mybigday
Stars★ 85,748★ 0
30d uses
Score7730
Official
Categories
ProductivityDeveloper ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month8 mo ago

time · Summary

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

mcp-sdk-client-ssejs · Summary

A React Native-compatible client transport for MCP using SSE.js to support llm.rn integration.

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

mcp-sdk-client-ssejs · Use cases

  • Building React Native applications that need to integrate with MCP servers
  • Implementing AI-powered features in mobile apps using llama.rn
  • Creating custom MCP client transports for specific environments

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

mcp-sdk-client-ssejs · Install

npm install @modelcontextprotocol/sdk
npm install mcp-sdk-client-ssejs

For React Native, you may need to configure your metro config:

module.exports = {
  presets: [/* ... */],
  plugins: [
    [
      'module-resolver',
      {
        alias: {
          '@modelcontextprotocol/sdk': '@modelcontextprotocol/sdk/dist/esm',
        },
      },
    ],
  ],
}

If CustomEvent is missing in React Native, add this polyfill:

import NativeCustomEvent from 'react-native/Libraries/Events/CustomEvent'

window.CustomEvent = class CustomEvent extends NativeCustomEvent {
  constructor(type, eventInitDict = {}) {
    super(type, eventInitDict)
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.