time vs plausible-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | plausible-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 31 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsMonitoringDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
plausible-mcp · Summary
An MCP server for natural interaction with Plausible Analytics data via LLM conversations.
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
plausible-mcp · Use cases
- Website administrators querying traffic sources and visitor demographics
- Content creators analyzing which pages have the highest engagement
- Marketing teams evaluating campaign performance and UTM effectiveness
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"]
}
}
}plausible-mcp · Install
# Clone the repository
git clone https://github.com/The-Focus-AI/plausible-mcp.git
cd plausible-mcp
# Install dependencies
pnpm install
# Build the server
pnpm build
# Run the server
pnpm startClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"plausible": {
"command": "node",
"args": ["path/to/plausible-mcp/dist/index.js"],
"env": {
"PLAUSIBLE_API_KEY": "your_api_key_here",
"PLAUSIBLE_API_URL": "https://plausible.io/api/v2"
}
}
}
}