time vs wealthsimple-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | wealthsimple-mcp by tatianathevisionary | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
wealthsimple-mcp · Summary
TypeScript MCP server connecting AI agents to Wealthsimple's help center via public Zendesk API with 7 typed tools.
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
wealthsimple-mcp · Use cases
- Answering user questions about Wealthsimple products with up-to-date, cited information
- Automating support responses with current help center documentation
- Enabling financial advisors to quickly retrieve Wealthsimple account and product information
- Assisting developers building fintech integrations with Wealthsimple
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"]
}
}
}wealthsimple-mcp · Install
Installation
- Clone the repository:
``bash git clone https://github.com/tatianathevisionary/wealthsimple-mcp.git cd wealthsimple-mcp ``
- Install dependencies:
``bash npm install ``
- Build the project:
``bash npm run build ``
- Run the server:
``bash npm start ``
Claude Desktop Configuration
Add to your mcp.json:
{
"mcpServers": {
"wealthsimple-help-center": {
"command": "node",
"args": ["/absolute/path/to/wealthsimple-mcp/build/index.js"]
}
}
}