langfuse-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
langfuse-mcp by avivsinai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 87 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsMonitoringDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
langfuse-mcp · Summary
Langfuse MCP server for AI agents to query trace data, debug exceptions, and manage observability.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
langfuse-mcp · Use cases
- Debugging failing agent runs by inspecting Langfuse traces and exception details
- Analyzing slow generations and high-latency spans in production
- Managing prompt versions, labels and datasets directly from AI workflows
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
langfuse-mcp · Install
Installation
**Using Claude Desktop (via project .mcp.json)**
{
"mcpServers": {
"langfuse": {
"command": "uvx",
"args": ["langfuse-mcp"],
"env": {
"LANGFUSE_PUBLIC_KEY": "pk-...",
"LANGFUSE_SECRET_KEY": "sk-...",
"LANGFUSE_HOST": "https://cloud.langfuse.com"
}
}
}
}**Using CLI**
# Claude Code
code mcp add \
-e LANGFUSE_PUBLIC_KEY=pk-... \
-e LANGFUSE_SECRET_KEY=sk-... \
-e LANGFUSE_HOST=https://cloud.langfuse.com \
langfuse -- uvx langfuse-mcp
# Codex CLI
codex mcp add langfuse \
--env LANGFUSE_PUBLIC_KEY=pk-... \
--env LANGFUSE_SECRET_KEY=sk-... \
--env LANGFUSE_HOST=https://cloud.langfuse.com \
-- uvx langfuse-mcptime · 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"]
}
}
}