mcp-kibela-server vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-kibela-server by kiwamizamurai | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | ProductivityKnowledge GraphCommunication | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
mcp-kibela-server · Summary
MCP server for Kibela API integration, enabling LLMs to search, retrieve, and manage notes with advanced filtering capabilities.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-kibela-server · Use cases
- AI assistants retrieving and summarizing recent notes from a team's knowledge base
- Automated organization of content through folder and group management
- Cross-referencing information between different notes and documents
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-kibela-server · Install
Installation
- Install via npm:
npm install -g @kiwamizamurai/mcp-kibela-server- Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"kibela": {
"command": "npx",
"args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
"env": {
"KIBELA_TEAM": "YOUR_TEAM_NAME",
"KIBELA_TOKEN": "YOUR_TOKEN"
}
}
}
}- For Docker users:
{
"mcpServers": {
"kibela": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "KIBELA_TEAM",
"-e", "KIBELA_TOKEN",
"ghcr.io/kiwamizamurai/mcp-kibela-server:latest"
],
"env": {
"KIBELA_TEAM": "YOUR_TEAM_NAME",
"KIBELA_TOKEN": "YOUR_TOKEN"
}
}
}
}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"]
}
}
}