time vs fastapi_mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | fastapi_mcp by tadata-org | |
|---|---|---|
| Stars | ★ 85,748 | ★ 11,863 |
| 30d uses | — | — |
| Score | 77 | 60 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
fastapi_mcp · Summary
FastAPI-MCP exposes FastAPI endpoints as MCP tools with built-in authentication.
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
fastapi_mcp · Use cases
- Convert existing REST APIs to MCP tools for AI agents
- Securely expose internal API endpoints to language models
- Create MCP servers from existing FastAPI services with minimal code changes
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"]
}
}
}fastapi_mcp · Install
Install with uv or pip:
uv add fastapi-mcppip install fastapi-mcpBasic usage in FastAPI app:
from fastapi import FastAPI
from fastapi_mcp import FastApiMCP
app = FastAPI()
mcp = FastApiMCP(app)
mcp.mount()For Claude Desktop, add to config.json:
{
"mcpServers": {
"fastapi": {
"command": "python",
"args": ["-m", "fastapi_mcp"]
}
}
}