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 | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this 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-mcpAfter 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"]
}
}
}