MCP Catalogs
Home

adonis-mcp vs time

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

adonis-mcp
by 7nohe
time
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3577
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsCommunication
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

adonis-mcp · Summary

AdonisJS package for building remote MCP servers with Server-Sent Events support.

time · Summary

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

adonis-mcp · Use cases

  • Building MCP servers within existing AdonisJS applications
  • Creating custom AI tools with backend logic in AdonisJS
  • Exposing database resources through MCP protocol

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

adonis-mcp · Install

node ace add @7nohe/adonis-mcp

After installation, configure your MCP server in config/mcp.ts:

import { defineConfig } from '@7nohe/adonis-mcp'

export default defineConfig({
  ssePath: '/sse',
  messagesPath: '/messages',
  serverOptions: {
    name: 'mymcp',
    version: '0.0.1',
  },
})

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "mymcp": {
      "url": "http://localhost:3333/sse"
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.