MCP Catalogs
Home

MCPify vs time

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

MCPify
by abdebek
time
by modelcontextprotocol
Stars★ 4★ 85,748
30d uses
Score3877
Official
Categories
Developer ToolsAI / LLM ToolsWeb Scraping
ProductivityDeveloper ToolsCommunication
LanguageC#TypeScript
Last commit3 mo agothis month

MCPify · Summary

MCPify is a .NET library that converts OpenAPI/Swagger specs into MCP tools for AI assistants.

time · Summary

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

MCPify · Use cases

  • Expose internal .NET APIs as tools for Claude Desktop integration
  • Transform public REST APIs with OpenAPI specs into MCP-accessible tools
  • Create OAuth-protected MCP tools with automatic token management

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

MCPify · Install

Installation

  1. Install the package into your ASP.NET Core project:
dotnet add package MCPify
  1. Configure in your Program.cs:
builder.Services.AddMcpify(options => {
    options.Transport = McpTransportType.Stdio;
    options.LocalEndpoints = new LocalEndpointsOptions {
        Enabled = true,
        ToolPrefix = "myapp_"
    };
});
  1. For Claude Desktop, add to your config file:
{
  "mcpServers": {
    "my-app": {
      "command": "dotnet",
      "args": [
        "run",
        "--project",
        "/absolute/path/to/YourProject.csproj",
        "--",
        "--Mcpify:Transport=Stdio"
      ]
    }
  }
}

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.