time vs mcp-libsql
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mcp-libsql by Xexr | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | DatabaseDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-libsql · Summary
Secure MCP server for libSQL databases with comprehensive tools, connection pooling, and transaction support.
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-libsql · Use cases
- Securely interact with libSQL/Turso databases through Claude Desktop for data analysis and manipulation
- Build applications that need database access while maintaining security through the MCP protocol
- Manage database schemas and perform table operations without direct SQL exposure
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"]
}
}
}mcp-libsql · Install
Installation
# Install globally
pnpm install -g @xexr/mcp-libsqlClaude Desktop Configuration
Create a configuration file at ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"mcp-libsql": {
"command": "mcp-libsql",
"args": [
"--url",
"file:///Users/username/database.db"
]
}
}
}For Turso databases with authentication:
export LIBSQL_AUTH_TOKEN="your-turso-auth-token-here"{
"mcpServers": {
"mcp-libsql": {
"command": "mcp-libsql",
"args": [
"--url",
"libsql://your-database.turso.io"
]
}
}
}