time vs notion-export-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | notion-export-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | NotionKnowledge GraphProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
notion-export-mcp-server · Summary
An MCP server that exports Notion pages to markdown via unofficial API.
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
notion-export-mcp-server · Use cases
- AI assistants can read and analyze Notion documentation
- Export Notion knowledge bases for processing by LLMs
- Integrate Notion content into AI-powered workflows
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"]
}
}
}notion-export-mcp-server · Install
npm install notion-export-mcp-serverAdd to Claude Desktop configuration:
{
"mcpServers": {
"notion-export": {
"command": "npx",
"args": [
"-y",
"notion-export-mcp-server"
],
"env": {
"NOTION_TOKEN_V2": "<your token>",
"NOTION_FILE_TOKEN": "<your token>"
}
}
}
}