time vs apitomcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | apitomcp by wrannaman | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 77 | 27 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer Toolsapi-integrationOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 10 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
apitomcp · Summary
Converts any API into an MCP server using Swagger documentation.
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
apitomcp · Use cases
- Integrate existing REST APIs with AI assistants that support MCP
- Convert legacy API endpoints into MCP-compatible tools
- Create MCP servers from third-party APIs without modifying the original API
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"]
}
}
}apitomcp · Install
Installation
- Clone the repository:
git clone https://github.com/wrannaman/apitomcp.git
cd apitomcp- Install dependencies:
npm install- Run the server:
npm run dev- Configure Claude Desktop:
{
"mcpServers": {
"api2mcp": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer mcp_key_claude_desktop"
}
}
}
}- Or use with Docker:
docker build -t api2mcp .
docker run -p 3000:3000 api2mcp