mcp-server-langfuse vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-langfuse by langfuse | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 167 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 15 mo ago | this month |
mcp-server-langfuse · Summary
MCP server for accessing and managing Langfuse prompts through the Model Context Protocol.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-langfuse · Use cases
- Integrating Langfuse prompt management with AI assistants that support MCP
- Accessing and deploying production prompts across different applications through MCP
- Automating prompt management workflows using MCP tool calling
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
mcp-server-langfuse · Install
Install steps:
- Build the server:
npm install
npm run build- Add to Claude Desktop by editing
claude_desktop_config.json:
{
"mcpServers": {
"langfuse": {
"command": "node",
"args": ["<absolute-path>/build/index.js"],
"env": {
"LANGFUSE_PUBLIC_KEY": "your-public-key",
"LANGFUSE_SECRET_KEY": "your-secret-key",
"LANGFUSE_BASEURL": "https://cloud.langfuse.com"
}
}
}
}Replace environment variables with your actual Langfuse API keys.
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"]
}
}
}