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 | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsWeb Scraping | ProductivityDeveloper ToolsCommunication |
| Language | C# | TypeScript |
| Last commit | 3 mo ago | this 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
- Install the package into your ASP.NET Core project:
dotnet add package MCPify- Configure in your Program.cs:
builder.Services.AddMcpify(options => {
options.Transport = McpTransportType.Stdio;
options.LocalEndpoints = new LocalEndpointsOptions {
Enabled = true,
ToolPrefix = "myapp_"
};
});- 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"]
}
}
}