time vs mcp-csharp-starter
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-csharp-starter by SamMorrowDrums | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-csharp-starter · Summary
A feature-complete MCP server template in C# with tools, resources, and prompts using .NET 8.
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-csharp-starter · Use cases
- Building custom AI tools for .NET applications
- Creating MCP servers for enterprise integration
- Developing AI-powered code review assistants
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-csharp-starter · Install
Installation
- Prerequisites: [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)
- Clone the repository
``bash git clone https://github.com/SamMorrowDrums/mcp-csharp-starter.git cd mcp-csharp-starter ``
- Restore dependencies
``bash dotnet restore ``
- Run the server
```bash # stdio transport dotnet run
# HTTP transport dotnet run -- --http --port 8080 ```
Claude Desktop Configuration
{
"mcpServers": {
"csharp-starter": {
"command": "dotnet",
"args": ["run", "--project", "/path/to/mcp-csharp-starter"],
"env": {
"DOTNET_ENVIRONMENT": "Development"
}
}
}
}