time vs nestjs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | nestjs-mcp by orbit-codes | |
|---|---|---|
| Stars | ★ 85,748 | ★ 11 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
nestjs-mcp · Summary
A NestJS integration for MCP that enables building MCP servers using dependency injection and decorators.
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
nestjs-mcp · Use cases
- Building MCP servers with NestJS's modular architecture
- Exposing REST APIs as MCP resources and tools
- Integrating existing NestJS applications with MCP
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"]
}
}
}nestjs-mcp · Install
npm install @orbit-codes/nestjs-mcp @modelcontextprotocol/sdk zodIn your NestJS application:
import { Module } from '@nestjs/common';
import { MCPModule } from '@orbit-codes/nestjs-mcp';
@Module({
imports: [
MCPModule.register({
name: 'MyMCPServer',
version: '1.0.0',
sseEndpoint: '/mcp/sse',
messagesEndpoint: '/mcp/messages',
}),
],
})
export class AppModule {}For Claude Desktop, add to config.json:
{
"mcpServers": {
"nestjs-mcp": {
"command": "node",
"args": ["path/to/your/app.js"]
}
}
}